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
Try:
library(tidyverse)
your_dataframe%>% pivot_longer(-Date, names_to = "plylum", values_to = "percent")