摘要:
传给后端之前先做下替换处理,后端再split就能获取到每行数据,我这里用的是分号进行分隔: this.content.replace(/\n/g,':') 阅读全文
摘要:
diamonds 是内置数据集library(ggplot2) ggplot(diamonds, aes(carat)) + geom_density() ggplot(diamonds, aes(depth, colour = cut)) + geom_density() + xlim(55, 7 阅读全文
摘要:
RData文件存储的是对象,比如a=5 > num <- seq(0, 5, length.out=10) #创建对象num > num [1] 0.0000000 0.5555556 1.1111111 1.6666667 2.2222222 2.7777778 3.3333333 3.88888 阅读全文