疫情数据可视化(动态变化)
用R进行数据可视化
不需要任何外部文件,下面代码一步到位:
library(ggplot2)
library(scales)
library(gganimate)
source('https://github.com/mcanouil/DEV/raw/master/R/theme_black.R')
#get data
raw_data <- jsonlite::fromJSON(http://ncov.nosensor.com:8080/api/)
data <- raw_data$province
total_conf <- sapply(data$Nco
1