Skip to content

Commit 0a6f0b8

Browse files
committed
add links to medium
1 parent 929a7f0 commit 0a6f0b8

File tree

8 files changed

+12
-4
lines changed

8 files changed

+12
-4
lines changed

Diff for: _posts/2020-05-17-reshape-python-pandas-dataframe-from-long-to-wide-with-pivottable/reshape-python-pandas-dataframe-from-long-to-wide-with-pivottable.Rmd

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ This Python tutorial is also on [Medium, Towards Data Science](https://towardsda
3131

3232
The opposite of `pivot_table` is `melt`, and you can find the tutorial for `melt` (wide to long) [here](https://towardsdatascience.com/reshape-pandas-dataframe-with-melt-in-python-tutorial-and-visualization-29ec1450bb02).
3333

34+
If you're an R user, the [melt](https://towardsdatascience.com/reshape-r-dataframes-wide-to-long-with-melt-tutorial-and-visualization-ddf130cd9299) function in R works just like Python's `melt`.
35+
3436
## Consider being a patron and supporting my work?
3537

3638
[Donate and become a patron](https://donorbox.org/support-my-teaching): If you find value in what I do and have learned something from my site, please consider becoming a patron. It takes me many hours to research, learn, and put together tutorials. Your support really matters.

Diff for: _posts/2020-05-17-reshape-python-pandas-dataframe-from-long-to-wide-with-pivottable/reshape-python-pandas-dataframe-from-long-to-wide-with-pivottable.html

+1
Original file line numberDiff line numberDiff line change
@@ -982,6 +982,7 @@ <h3 class="d-toc-header">Table of Contents</h3>
982982
<p>Get source code for this RMarkdown script <a href="https://raw.githubusercontent.com/hauselin/rtutorialsite/master/_posts/2020-05-17-reshape-python-pandas-dataframe-from-long-to-wide-with-pivottable/reshape-python-pandas-dataframe-from-long-to-wide-with-pivottable.Rmd">here</a>.</p>
983983
<p>This Python tutorial is also on <a href="https://towardsdatascience.com/reshape-pandas-dataframe-with-pivot-table-in-python-tutorial-and-visualization-2248c2012a31">Medium, Towards Data Science</a>. Click here if you’re looking for the tutorial for the R version of <code>pivot_table</code> (also the <code>dcast</code> function in R).</p>
984984
<p>The opposite of <code>pivot_table</code> is <code>melt</code>, and you can find the tutorial for <code>melt</code> (wide to long) <a href="https://towardsdatascience.com/reshape-pandas-dataframe-with-melt-in-python-tutorial-and-visualization-29ec1450bb02">here</a>.</p>
985+
<p>If you’re an R user, the <a href="https://towardsdatascience.com/reshape-r-dataframes-wide-to-long-with-melt-tutorial-and-visualization-ddf130cd9299">melt</a> function in R works just like Python’s <code>melt</code>.</p>
985986
<h2 id="consider-being-a-patron-and-supporting-my-work">Consider being a patron and supporting my work?</h2>
986987
<p><a href="https://donorbox.org/support-my-teaching">Donate and become a patron</a>: If you find value in what I do and have learned something from my site, please consider becoming a patron. It takes me many hours to research, learn, and put together tutorials. Your support really matters.</p>
987988
<p>How does the pandas <code>pivot_table()</code> method reshape dataframes? How do you reshape a dataframe from long to wide form? This tutorial will walk you through reshaping dataframes using <code>pd.pivot_table()</code> or the <code>pivot_table</code> method associated with pandas dataframes.</p>

Diff for: _posts/2020-06-27-reshape-r-dataframes-from-wide-to-long-with-melt/reshape-r-dataframes-from-wide-to-long-with-melt.Rmd

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ editor_options:
2424
knitr::opts_chunk$set(echo = TRUE, cache = FALSE, comment = NA, message = FALSE, warning = FALSE)
2525
```
2626

27+
This tutorial is also on [Medium, Towards Data Science](https://towardsdatascience.com/reshape-r-dataframes-wide-to-long-with-melt-tutorial-and-visualization-ddf130cd9299).
28+
2729
Get source code for this RMarkdown script [here](https://raw.githubusercontent.com/hauselin/rtutorialsite/master/_posts/2020-06-27-reshape-r-dataframes-from-wide-to-long-with-melt/reshape-r-dataframes-from-wide-to-long-with-melt.Rmd).
2830

2931
## Consider being a patron and supporting my work?

Diff for: _posts/2020-06-27-reshape-r-dataframes-from-wide-to-long-with-melt/reshape-r-dataframes-from-wide-to-long-with-melt.html

+1
Original file line numberDiff line numberDiff line change
@@ -977,6 +977,7 @@ <h3 class="d-toc-header">Table of Contents</h3>
977977
</ul>
978978
</nav>
979979
<hr class="d-toc-separator"/>
980+
<p>This tutorial is also on <a href="https://towardsdatascience.com/reshape-r-dataframes-wide-to-long-with-melt-tutorial-and-visualization-ddf130cd9299">Medium, Towards Data Science</a>.</p>
980981
<p>Get source code for this RMarkdown script <a href="https://raw.githubusercontent.com/hauselin/rtutorialsite/master/_posts/2020-06-27-reshape-r-dataframes-from-wide-to-long-with-melt/reshape-r-dataframes-from-wide-to-long-with-melt.Rmd">here</a>.</p>
981982
<h2 id="consider-being-a-patron-and-supporting-my-work">Consider being a patron and supporting my work?</h2>
982983
<p><a href="https://donorbox.org/support-my-teaching">Donate and become a patron</a>: If you find value in what I do and have learned something from my site, please consider becoming a patron. It takes me many hours to research, learn, and put together tutorials. Your support really matters.</p>

Diff for: docs/posts/2020-05-17-reshape-python-pandas-dataframe-from-long-to-wide-with-pivottable/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -1395,6 +1395,7 @@ <h3 class="d-toc-header">Table of Contents</h3>
13951395
<p>Get source code for this RMarkdown script <a href="https://raw.githubusercontent.com/hauselin/rtutorialsite/master/_posts/2020-05-17-reshape-python-pandas-dataframe-from-long-to-wide-with-pivottable/reshape-python-pandas-dataframe-from-long-to-wide-with-pivottable.Rmd">here</a>.</p>
13961396
<p>This Python tutorial is also on <a href="https://towardsdatascience.com/reshape-pandas-dataframe-with-pivot-table-in-python-tutorial-and-visualization-2248c2012a31">Medium, Towards Data Science</a>. Click here if you’re looking for the tutorial for the R version of <code>pivot_table</code> (also the <code>dcast</code> function in R).</p>
13971397
<p>The opposite of <code>pivot_table</code> is <code>melt</code>, and you can find the tutorial for <code>melt</code> (wide to long) <a href="https://towardsdatascience.com/reshape-pandas-dataframe-with-melt-in-python-tutorial-and-visualization-29ec1450bb02">here</a>.</p>
1398+
<p>If you’re an R user, the <a href="https://towardsdatascience.com/reshape-r-dataframes-wide-to-long-with-melt-tutorial-and-visualization-ddf130cd9299">melt</a> function in R works just like Python’s <code>melt</code>.</p>
13981399
<h2 id="consider-being-a-patron-and-supporting-my-work">Consider being a patron and supporting my work?</h2>
13991400
<p><a href="https://donorbox.org/support-my-teaching">Donate and become a patron</a>: If you find value in what I do and have learned something from my site, please consider becoming a patron. It takes me many hours to research, learn, and put together tutorials. Your support really matters.</p>
14001401
<p>How does the pandas <code>pivot_table()</code> method reshape dataframes? How do you reshape a dataframe from long to wide form? This tutorial will walk you through reshaping dataframes using <code>pd.pivot_table()</code> or the <code>pivot_table</code> method associated with pandas dataframes.</p>

Diff for: docs/posts/2020-06-27-reshape-r-dataframes-from-wide-to-long-with-melt/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -1390,6 +1390,7 @@ <h3 class="d-toc-header">Table of Contents</h3>
13901390
</ul>
13911391
</nav>
13921392
<hr class="d-toc-separator"/>
1393+
<p>This tutorial is also on <a href="https://towardsdatascience.com/reshape-r-dataframes-wide-to-long-with-melt-tutorial-and-visualization-ddf130cd9299">Medium, Towards Data Science</a>.</p>
13931394
<p>Get source code for this RMarkdown script <a href="https://raw.githubusercontent.com/hauselin/rtutorialsite/master/_posts/2020-06-27-reshape-r-dataframes-from-wide-to-long-with-melt/reshape-r-dataframes-from-wide-to-long-with-melt.Rmd">here</a>.</p>
13941395
<h2 id="consider-being-a-patron-and-supporting-my-work">Consider being a patron and supporting my work?</h2>
13951396
<p><a href="https://donorbox.org/support-my-teaching">Donate and become a patron</a>: If you find value in what I do and have learned something from my site, please consider becoming a patron. It takes me many hours to research, learn, and put together tutorials. Your support really matters.</p>

Diff for: docs/posts/posts.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"data.table"
1717
],
1818
"preview": "posts/2020-06-27-reshape-r-dataframes-from-wide-to-long-with-melt/./main_wide2long.png",
19-
"last_modified": "2020-06-27T19:16:57-04:00",
19+
"last_modified": "2020-06-28T07:19:17-04:00",
2020
"preview_width": 1169,
2121
"preview_height": 905
2222
},
@@ -38,7 +38,7 @@
3838
"reticulate"
3939
],
4040
"preview": "posts/2020-05-17-reshape-python-pandas-dataframe-from-long-to-wide-with-pivottable/./main.png",
41-
"last_modified": "2020-06-27T19:11:32-04:00",
41+
"last_modified": "2020-06-28T07:21:20-04:00",
4242
"preview_width": 1260,
4343
"preview_height": 735
4444
},

Diff for: docs/sitemap.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
</url>
3535
<url>
3636
<loc>https://hausetutorials.netlify.com/posts/2020-06-27-reshape-r-dataframes-from-wide-to-long-with-melt/</loc>
37-
<lastmod>2020-06-27T19:16:57-04:00</lastmod>
37+
<lastmod>2020-06-28T07:19:17-04:00</lastmod>
3838
</url>
3939
<url>
4040
<loc>https://hausetutorials.netlify.com/posts/2020-05-17-reshape-python-pandas-dataframe-from-long-to-wide-with-pivottable/</loc>
41-
<lastmod>2020-06-27T19:11:32-04:00</lastmod>
41+
<lastmod>2020-06-28T07:21:20-04:00</lastmod>
4242
</url>
4343
<url>
4444
<loc>https://hausetutorials.netlify.com/posts/2020-05-14-reshaping-data-in-python-pandas/</loc>

0 commit comments

Comments
 (0)