You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: _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 number
Diff line number
Diff line change
@@ -36,17 +36,17 @@ How do you reshape a dataframe from wide to long form in R? How does the `melt()
36
36
37
37

38
38
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).
40
40
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
42
43
*`melt` is more powerful but isn't any more complicated than the other functions...
43
44
*`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))
45
45
*`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):
46
46
47
47
> 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.
48
48
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`
50
50
51
51
```{r}
52
52
# load data.table library so we use its melt implementation
Copy file name to clipboardexpand all lines: _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 number
Diff line number
Diff line change
@@ -985,18 +985,18 @@ <h2 id="consider-being-a-patron-and-supporting-my-work">Consider being a patron
985
985
<figure>
986
986
<imgsrc="main_wide2long.png" alt="" /><figcaption>Summary of how melt() works</figcaption>
987
987
</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 <ahref="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 <ahref="https://cran.r-project.org/web/packages/data.table/vignettes/datatable-reshape.html">here</a>.</p>
989
989
<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 <ahref="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 <ahref="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>
991
992
<li><code>melt</code> is more powerful but isn’t any more complicated than the other functions…</li>
992
993
<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 <ahref="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 <ahref="https://towardsdatascience.com/reshape-pandas-dataframe-with-melt-in-python-tutorial-and-visualization-29ec1450bb02">here</a>)</li>
994
994
<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 <ahref="https://cran.r-project.org/web/packages/data.table/vignettes/datatable-reshape.html">documentation</a>:</li>
995
995
</ul>
996
996
<blockquote>
997
997
<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>
998
998
</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>
1000
1000
<divclass="layout-chunk" data-layout="l-body">
1001
1001
<preclass="r"><code>
1002
1002
# load data.table library so we use its melt implementation
Copy file name to clipboardexpand all lines: docs/posts/2020-06-27-reshape-r-dataframes-from-wide-to-long-with-melt/index.html
+4-4
Original file line number
Diff line number
Diff line change
@@ -1398,18 +1398,18 @@ <h2 id="consider-being-a-patron-and-supporting-my-work">Consider being a patron
1398
1398
<figure>
1399
1399
<imgsrc="main_wide2long.png" alt="" /><figcaption>Summary of how melt() works</figcaption>
1400
1400
</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 <ahref="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 <ahref="https://cran.r-project.org/web/packages/data.table/vignettes/datatable-reshape.html">here</a>.</p>
1402
1402
<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 <ahref="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 <ahref="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>
1404
1405
<li><code>melt</code> is more powerful but isn’t any more complicated than the other functions…</li>
1405
1406
<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 <ahref="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 <ahref="https://towardsdatascience.com/reshape-pandas-dataframe-with-melt-in-python-tutorial-and-visualization-29ec1450bb02">here</a>)</li>
1407
1407
<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 <ahref="https://cran.r-project.org/web/packages/data.table/vignettes/datatable-reshape.html">documentation</a>:</li>
1408
1408
</ul>
1409
1409
<blockquote>
1410
1410
<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>
1411
1411
</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>
1413
1413
<divclass="layout-chunk" data-layout="l-body">
1414
1414
<preclass="r"><code>
1415
1415
# load data.table library so we use its melt implementation
0 commit comments