Anyone know of an update to package(melt)?

It wasn't available for R 1.4.17. Or another package that allows reshaping data frames (wide to long) easily?

Use tidyr pivot_ functions

I have R studio 1.4.1717....

Just to clarify some points

Your RStudio version is not relevant for your problem because the IDE is independent of your R package library.

You get that error message because there is no R package called melt, you are most likely referring to the melt() function from the reshape2 package.

Also, as @nirgrahamuk mentioned, it would be better to use the pivot_longer() function from the tidyr package (which supersedes the old reshape2 package).

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.