confirmed_cases <- coronavirus %>% group_by(country) %>% summarize(total_cases = sum(cases)) %>% arrange(desc(total_cases))输出
时间: 2024-03-30 09:39:03 浏览: 61
这段代码是用 R 语言对一个名为 "coronavirus" 的数据集进行处理,首先按照国家对数据进行分组,然后计算每个国家的确诊病例总数,并将结果按照总数降序排列。具体来说,这段代码使用了 %>% 管道符连接了多个函数,其中包括 group_by()、summarize() 和 arrange() 函数。
相关问题
plot.SH <- function() { df2 <- data.frame( date = rep(dat$date,2), yy = c(dat$SH,dat$JL), type = rep(c("Shang Hai","Ji Lin"),each=n)) png("Fig-SH-JL-2022.png",width = 1024,height = 1024) p2 <- ggplot(df2, aes(date, yy)) + geom_point() p2 <- p2 + scale_x_date(date_labels = "%b%d") p2 <- p2 + facet_wrap( ~ type, scales = "free_y", nrow = 2) p2 + labs(y = "daily confirmed")+ labs(x = "date") + theme(axis.text = element_text(size = 17), axis.title.y = element_text(size = 17), strip.text = element_text(size = 17), legend.position = "none") dev.off() }
这是一个 R 语言的函数,用于绘制日期和每日确诊病例数的散点图,其中包含了上海和吉林两个地区的数据。函数中使用了 ggplot2 包来进行数据可视化,通过 facet_wrap 函数将两个地区的数据分别展示在两个子图中。函数还设置了图像的宽度、高度、标签和字体大小等参数,并最终将图像保存在 png 格式的文件中。
plotJL <- function(city="JL") { x_label <- seq(from=as.Date("2022/2/25"),to=as.Date("2022/5/25"),by=7) pfile=paste0("Fig_",city,".png") png(pfile,width = 500*6,height = 500*4) par( mfrow=c(2,2),mar=c(5,5,5,1)*3 ) plot(df.pred$date,df.pred$dI,pch='x',xaxt='n', xlab="Date",ylab="Daily Confirmed" ,cex.lab=3,cex.axis = 2, cex=3) axis(1,x_label,format(x_label,"%m-%d"),las=1,cex.axis=2) title(main = "A",cex.main=3) predlines <- c(1:10) plty <- c(2:11) pcol <- c(2:11) matlines(df.mean$date,df.mean[,3+predlines], lty=1,col=1,lwd = 3) matlines(df.pred$date,df.pred[,3+predlines], lty=plty,col=pcol,lwd = 2) abline(v=df.mean$date[c(18,27)],lty=2) legend("topright",paste("Predicted on",df.pred$date[(18:50)][predlines]), lty=plty,col=pcol,cex = 3,lwd=2 ) plot(df.pred$date,df.pred$dI,pch='x',xaxt='n', xlab="Date",ylab="Daily Confirmed" ,cex.lab=3,cex.axis = 2, cex=3) axis(1,x_label,format(x_label,"%m-%d"),cex.axis=2) title(main = "B",cex.main=3) predlines <- c(11:18) plty <- c(2:9) pcol <- c(2:9) matlines(df.mean$date,df.mean[,3+predlines], lty=1,col=1,lwd = 3) matlines(df.pred$date,df.pred[,3+predlines], lty=plty,col=pcol,lwd = 2) abline(v=df.mean$date[c(28,35)],lty=2) legend("topright",paste("Predicted on",df.pred$date[(18:50)][predlines]), lty=plty,col=pcol,cex = 3,lwd=2 ) plot(df.pred$date,df.pred$dI,pch='x',xaxt='n', xlab="Date",ylab="Daily Confirmed" ,cex.lab=3,cex.axis = 2, cex=3) axis(1,x_label,format(x_label,"%m-%d"),cex.axis=2) title(main = "C",cex.main=3) predlines <- c(19:26) plty <- c(2:9) pcol <- c(2:9) matlines(df.mean$date,df.mean[,3+predlines], lty=1,col=1,lwd = 3) matlines(df.pred$date,df.pred[,3+predlines], lty=plty,col=pcol,lwd = 2) abline(v=df.mean$date[c(36,43)],lty=2) legend("topright",paste("Predicted on",df.pred$date[(18:50)][predlines]), lty=plty,col=pcol,cex = 3,lwd=2 ) plot(df.pred$date,df.pred$dI,pch='x',xaxt='n', xlab="Date",ylab="Daily Confirmed" ,cex.lab=3,cex.axis = 2, cex=3) axis(1,x_label,format(x_label,"%m-%d"),cex.axis=2) title(main = "D",cex.main=3) predlines <- c(27:33) plty <- c(2:8) pcol <- c(2:8) matlines(df.mean$date,df.mean[,3+predlines], lty=1,col=1,lwd = 3) matlines(df.pred$date,df.pred[,3+predlines], lty=plty,col=pcol,lwd = 2) abline(v=df.mean$date[c(44,50)],lty=2) legend("topright",paste("Predicted on",df.pred$date[(18:50)][predlines]), lty=plty,col=pcol,cex = 3,lwd=2 ) dev.off() }
这段代码是用于绘制四个子图的函数,每个子图都是基于来自数据框 df.pred 和 df.mean 的数据绘制的。每个子图都有一个标题(A,B,C,D),并且包含了预测线和实际线。其中预测线是基于预测数据绘制的,实际线是基于实际数据绘制的。每个子图的预测线都有一个图例,用于说明预测线是基于哪个日期的数据绘制的。这些图形将被保存在文件名为 "Fig_JL.png" 的 PNG 文件中。
阅读全文