這篇文章告訴大家如何製作圖表
install.packages("tidyverse")
library(tidyverse)
datatable(表格1)
#data=你的數據
#geom_point=圖表類型
#設定兩軸aes(x=X,y=Y)
ggplot(data = 表格1) +
geom_point(mapping = aes(x = 年度, y = 案件數量))+
theme(text=element_text(family="黑體-繁 中黑"))
ggplot(data = 表格1) +
geom_point(mapping = aes(x = 年度, y = 案件數量,color = 案件類型))+
theme(text=element_text(family="黑體-繁 中黑"))
ggplot(data = 表格1) +
geom_point(mapping = aes(x = 年度, y = 案件數量,color = 案件類型))+
geom_line(mapping = aes(x = 年度, y = 案件數量,color = 案件類型))+
theme(text=element_text(family="黑體-繁 中黑"))
ggplot(data = 表格1,mapping = aes(x = 年度, y = 案件數量,color = 案件類型)) +
geom_point()+
geom_line()+
theme(text=element_text(family="黑體-繁 中黑"))
ggplot(data = 表格1,mapping = aes(x = 年度, y = 案件數量,fill=案件類型,label= 案件數量)) +
geom_histogram(binwidth = 0.2, stat = "identity") +
scale_fill_manual( values = c("#004AAD","grey50"))+
facet_wrap(~案件類型, ncol = 1)+
theme(text=element_text(family="黑體-繁 中黑"))