r


排序

对数据集进行排序的时候,不打乱行之间的联系
#sort m by using the order and keep the connections.
#Don’t miss the comma after the order.
sort_df <- m[order(m$attr), ]

画图

自定义坐标

在plot()函数中可以直接使用at属性
在hist()函数中需要:

hist(变量, xlim = range(0,10), xaxt="n") #将x轴取消
axis <- axis(1, at=seq(from, to, step)) #1代表横轴

将图片直接画到需要导出的pdf中

pdf("test.pdf")
plot()
dev.off()

对数据集中所有数据画相关性散点图

pairs(m)
如果想通过数字形式呈现
cor(m[ ,i:j])

使用barplot()画图报错height必须为向量

#将数据转换成table形式
barplot(table(data))

线性回归

预测

d = data.frame(var_name = c() )
predict(m, newdata = d)

y=a+bx最小二乘直线

abline(a = y.intercept, b= slope)

或者

m = lm(y~x)
abline(reg = m)

检查误差(误差均值应该为0)

plot(m$fitted.values, m$residuals) 

或者

qqnorm(m$residuals)

或者

layout(matrix(data=1:4, nrow=2, ncol=2, byrow=T))
plot(m)

检查数据是否为常态分布

qqnorm(m); qqline(m)

Author: csy99
Reprint policy: All articles in this blog are used except for special statements CC BY 4.0 reprint polocy. If reproduced, please indicate source csy99 !
评论
 Previous
c c
要点总结: GNU Compiler Collection也叫gcc,是最流行的C编译器之一。可以在很多操作系统中使用。在命令提示符中使用gcc cards.c -o cards进行编译。编译过后,一个cards.exe文件将出现(Wind
2020-04-16
Next 
type conversion type conversion
int to String有三种方法,其中第二种第三种效率差不多,要比第一种更快。 a+"" String.valueOf(a) Integer.toString(a) String to int int a = Integer.pars
2020-02-26
  TOC