dplyr summarize output - how to save it

后端 未结 1 1397
栀梦
栀梦 2021-01-22 13:09

I need to calculate summary statistics for observations of bird breeding activity for each of 150 species. The data frame has the species (scodef), the type of observation (cod

相关标签:
1条回答
  • 2021-01-22 13:27

    Assign this to a variable, then write to a csv like so:

    summarydf <- phenology %>% group_by......(as above)
    
    write.csv(summarydf, filename="yourfilenamehere.csv")
    
    0 讨论(0)
提交回复
热议问题