Reputation: 1
I would like to know, how can I do long format table.
if you are asking what I would like to do, it is for ggplot2 proportional stacked area chart. thank you very much
Upvotes: -3
Views: 223
Reputation: 49
Try:
library(tidyverse)
your_dataframe%>% pivot_longer(-Date, names_to = "plylum", values_to = "percent")
Upvotes: -2