当前位置:   article > 正文

R下一些函数_se=false

se=false
  • head(),tail() : 得到数据的最前或最后的数据。默认6条。可以加参数设置。
  • summary() : 汇总
  • 数理统计例子
library(ggplot2)
library(plotly)
head(state.x77)
summary(state.x77)


state <- data.frame(state.name,state.region,state.x77)
attach(state)
state_p <- data.frame(state.name,state.region,Area)
p <- ggplot(state_p,aes(x=state_p$state.region,y=state_p$Area,fill=state_p$state.region)) + geom_boxplot()  + ggtitle("美国不同地区州面积") 
ggplotly(p)

plot_ly(state_p,x=state.region,y=Area,color = state.region,type = 'box')

pairs(state)

k <- ggplot(state,aes(x=Illiteracy,y=Murder,color=state.region)) + geom_point() +  geom_smooth(method=lm, se=FALSE, fullrange=TRUE) + theme_classic()
ggplotly(k)

cor(state.x77)

q1 <- ggplot(state,aes(x=Murder,y=Life.Exp)) + geom_point() +  geom_smooth(method=lm, se=FALSE, fullrange=TRUE) + theme_classic()
ggplotly(q1)
q2 <- ggplot(state,aes(x=Murder,y=Life.Exp,color=state.region)) + geom_point() +  geom_smooth(method=lm, se=FALSE, fullrange=TRUE) + theme_classic()
ggplotly(q2)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • RStudio可以装R MarkDown导出html或pdf
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/181940
推荐阅读
相关标签
  

闽ICP备14008679号