Skip to content

Commit 954f7a5

Browse files
committed
edit reshape r melt
1 parent 0a6f0b8 commit 954f7a5

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@ How do you reshape a dataframe from wide to long form in R? How does the `melt()
3636

3737
![Summary of how melt() works](./main_wide2long.png)
3838

39-
Common terms for this transformation are melt, pivot-long, unpivot, gather, stack. Many functions have been written to convert data from wide to long form, but I believe `melt()` from the `data.table` library is the best. See `melt()` documentation [here](https://cran.r-project.org/web/packages/data.table/vignettes/datatable-reshape.html).
39+
Common terms for this transformation are melt, pivot-long, unpivot, gather, stack, and reshape. Many functions have been written to convert data from wide to long form, but I believe `melt()` from the `data.table` library is the best. See `melt()` documentation [here](https://cran.r-project.org/web/packages/data.table/vignettes/datatable-reshape.html).
4040

41-
* other functions like `gather` and `pivot_longer` are often just wrapper functions for `melt()`—these other functions simplify `melt` and often can't deal with more complex transformations
41+
* Python's [pandas](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.melt.html) library also has the equivalent `melt` function/method that works the same way (see my pandas melt tutorial [here](https://towardsdatascience.com/reshape-pandas-dataframe-with-melt-in-python-tutorial-and-visualization-29ec1450bb02))
42+
* other functions like `gather` and `pivot_longer` are often just wrapper functions for `melt()` or `reshape()`—these other functions simplify `melt` and often can't deal with more complex transformations
4243
* `melt` is more powerful but isn't any more complicated than the other functions...
4344
* `melt` alone is often enough for all your wide-to-long transformations; don't need to learn `gather`, `pivot_longer`, and `melt`; `melt` alone is enough!
44-
* Python's [pandas](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.melt.html) library also has the equivalent `melt` function/method that works the same way (see my pandas melt tutorial [here](https://towardsdatascience.com/reshape-pandas-dataframe-with-melt-in-python-tutorial-and-visualization-29ec1450bb02))
4545
* `data.table` package's implementation of `melt`, which is extremely powerful—much more efficient and powerful than the reshape library's `melt` function. According to the [documentation](https://cran.r-project.org/web/packages/data.table/vignettes/datatable-reshape.html):
4646

4747
> The melt and dcast functions for data.tables are for reshaping wide-to-long and long-to-wide, respectively; the implementations are specifically designed with large in-memory data (e.g. 10Gb) in mind.
4848
49-
Reminder again: We're using `melt` from the `data.table` library, not `reshape` library! Compare the documentation of the `melt` functions from the two libraries to the differences: `?data.table::melt` and `?reshape::melt`
49+
Reminder: We're using `melt` from the `data.table` library, not `reshape` library! Compare the documentation of the `melt` functions from the two libraries to the differences: `?data.table::melt` and `?reshape::melt`
5050

5151
```{r}
5252
# load data.table library so we use its melt implementation

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -985,18 +985,18 @@ <h2 id="consider-being-a-patron-and-supporting-my-work">Consider being a patron
985985
<figure>
986986
<img src="main_wide2long.png" alt="" /><figcaption>Summary of how melt() works</figcaption>
987987
</figure>
988-
<p>Common terms for this transformation are melt, pivot-long, unpivot, gather, stack. Many functions have been written to convert data from wide to long form, but I believe <code>melt()</code> from the <code>data.table</code> library is the best. See <code>melt()</code> documentation <a href="https://cran.r-project.org/web/packages/data.table/vignettes/datatable-reshape.html">here</a>.</p>
988+
<p>Common terms for this transformation are melt, pivot-long, unpivot, gather, stack, and reshape. Many functions have been written to convert data from wide to long form, but I believe <code>melt()</code> from the <code>data.table</code> library is the best. See <code>melt()</code> documentation <a href="https://cran.r-project.org/web/packages/data.table/vignettes/datatable-reshape.html">here</a>.</p>
989989
<ul>
990-
<li>other functions like <code>gather</code> and <code>pivot_longer</code> are often just wrapper functions for <code>melt()</code>—these other functions simplify <code>melt</code> and often can’t deal with more complex transformations</li>
990+
<li>Python’s <a href="https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.melt.html">pandas</a> library also has the equivalent <code>melt</code> function/method that works the same way (see my pandas melt tutorial <a href="https://towardsdatascience.com/reshape-pandas-dataframe-with-melt-in-python-tutorial-and-visualization-29ec1450bb02">here</a>)</li>
991+
<li>other functions like <code>gather</code> and <code>pivot_longer</code> are often just wrapper functions for <code>melt()</code> or <code>reshape()</code>—these other functions simplify <code>melt</code> and often can’t deal with more complex transformations</li>
991992
<li><code>melt</code> is more powerful but isn’t any more complicated than the other functions…</li>
992993
<li><code>melt</code> alone is often enough for all your wide-to-long transformations; don’t need to learn <code>gather</code>, <code>pivot_longer</code>, and <code>melt</code>; <code>melt</code> alone is enough!</li>
993-
<li>Python’s <a href="https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.melt.html">pandas</a> library also has the equivalent <code>melt</code> function/method that works the same way (see my pandas melt tutorial <a href="https://towardsdatascience.com/reshape-pandas-dataframe-with-melt-in-python-tutorial-and-visualization-29ec1450bb02">here</a>)</li>
994994
<li><code>data.table</code> package’s implementation of <code>melt</code>, which is extremely powerful—much more efficient and powerful than the reshape library’s <code>melt</code> function. According to the <a href="https://cran.r-project.org/web/packages/data.table/vignettes/datatable-reshape.html">documentation</a>:</li>
995995
</ul>
996996
<blockquote>
997997
<p>The melt and dcast functions for data.tables are for reshaping wide-to-long and long-to-wide, respectively; the implementations are specifically designed with large in-memory data (e.g. 10Gb) in mind.</p>
998998
</blockquote>
999-
<p>Reminder again: We’re using <code>melt</code> from the <code>data.table</code> library, not <code>reshape</code> library! Compare the documentation of the <code>melt</code> functions from the two libraries to the differences: <code>?data.table::melt</code> and <code>?reshape::melt</code></p>
999+
<p>Reminder: We’re using <code>melt</code> from the <code>data.table</code> library, not <code>reshape</code> library! Compare the documentation of the <code>melt</code> functions from the two libraries to the differences: <code>?data.table::melt</code> and <code>?reshape::melt</code></p>
10001000
<div class="layout-chunk" data-layout="l-body">
10011001
<pre class="r"><code>
10021002
# load data.table library so we use its melt implementation

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1398,18 +1398,18 @@ <h2 id="consider-being-a-patron-and-supporting-my-work">Consider being a patron
13981398
<figure>
13991399
<img src="main_wide2long.png" alt="" /><figcaption>Summary of how melt() works</figcaption>
14001400
</figure>
1401-
<p>Common terms for this transformation are melt, pivot-long, unpivot, gather, stack. Many functions have been written to convert data from wide to long form, but I believe <code>melt()</code> from the <code>data.table</code> library is the best. See <code>melt()</code> documentation <a href="https://cran.r-project.org/web/packages/data.table/vignettes/datatable-reshape.html">here</a>.</p>
1401+
<p>Common terms for this transformation are melt, pivot-long, unpivot, gather, stack, and reshape. Many functions have been written to convert data from wide to long form, but I believe <code>melt()</code> from the <code>data.table</code> library is the best. See <code>melt()</code> documentation <a href="https://cran.r-project.org/web/packages/data.table/vignettes/datatable-reshape.html">here</a>.</p>
14021402
<ul>
1403-
<li>other functions like <code>gather</code> and <code>pivot_longer</code> are often just wrapper functions for <code>melt()</code>—these other functions simplify <code>melt</code> and often can’t deal with more complex transformations</li>
1403+
<li>Python’s <a href="https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.melt.html">pandas</a> library also has the equivalent <code>melt</code> function/method that works the same way (see my pandas melt tutorial <a href="https://towardsdatascience.com/reshape-pandas-dataframe-with-melt-in-python-tutorial-and-visualization-29ec1450bb02">here</a>)</li>
1404+
<li>other functions like <code>gather</code> and <code>pivot_longer</code> are often just wrapper functions for <code>melt()</code> or <code>reshape()</code>—these other functions simplify <code>melt</code> and often can’t deal with more complex transformations</li>
14041405
<li><code>melt</code> is more powerful but isn’t any more complicated than the other functions…</li>
14051406
<li><code>melt</code> alone is often enough for all your wide-to-long transformations; don’t need to learn <code>gather</code>, <code>pivot_longer</code>, and <code>melt</code>; <code>melt</code> alone is enough!</li>
1406-
<li>Python’s <a href="https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.melt.html">pandas</a> library also has the equivalent <code>melt</code> function/method that works the same way (see my pandas melt tutorial <a href="https://towardsdatascience.com/reshape-pandas-dataframe-with-melt-in-python-tutorial-and-visualization-29ec1450bb02">here</a>)</li>
14071407
<li><code>data.table</code> package’s implementation of <code>melt</code>, which is extremely powerful—much more efficient and powerful than the reshape library’s <code>melt</code> function. According to the <a href="https://cran.r-project.org/web/packages/data.table/vignettes/datatable-reshape.html">documentation</a>:</li>
14081408
</ul>
14091409
<blockquote>
14101410
<p>The melt and dcast functions for data.tables are for reshaping wide-to-long and long-to-wide, respectively; the implementations are specifically designed with large in-memory data (e.g. 10Gb) in mind.</p>
14111411
</blockquote>
1412-
<p>Reminder again: We’re using <code>melt</code> from the <code>data.table</code> library, not <code>reshape</code> library! Compare the documentation of the <code>melt</code> functions from the two libraries to the differences: <code>?data.table::melt</code> and <code>?reshape::melt</code></p>
1412+
<p>Reminder: We’re using <code>melt</code> from the <code>data.table</code> library, not <code>reshape</code> library! Compare the documentation of the <code>melt</code> functions from the two libraries to the differences: <code>?data.table::melt</code> and <code>?reshape::melt</code></p>
14131413
<div class="layout-chunk" data-layout="l-body">
14141414
<pre class="r"><code>
14151415
# load data.table library so we use its melt implementation

docs/posts/posts.json

+1-1
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-28T07:19:17-04:00",
19+
"last_modified": "2020-06-29T10:42:43-04:00",
2020
"preview_width": 1169,
2121
"preview_height": 905
2222
},

docs/sitemap.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
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-28T07:19:17-04:00</lastmod>
37+
<lastmod>2020-06-29T10:42:43-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>

0 commit comments

Comments
 (0)