上一页 1 ··· 74 75 76 77 78 79 80 81 82 ··· 164 下一页
  2018年10月8日
摘要: package my_project;import java.util.Scanner;public class my_first_class { public static void main(Stri... 阅读全文
posted @ 2018-10-08 17:31 蔡军帅 阅读(144) 评论(0) 推荐(0)
摘要: package my_project;public class my_first_class { public static void main(String[] args) { // TO... 阅读全文
posted @ 2018-10-08 16:38 蔡军帅 阅读(129) 评论(0) 推荐(0)
摘要: 构造学生类: 阅读全文
posted @ 2018-10-08 16:38 蔡军帅 阅读(535) 评论(0) 推荐(0)
  2018年10月6日
摘要: 查看菜鸟教程:http://www.runoob.com/mysql/mysql-install.html 一、问题描述 在启动MYSQL时出现问题:“ERROR 2003 (HY000): Can’t connect to MySQL server on ‘localhost’ (10061)”, 阅读全文
posted @ 2018-10-06 23:53 蔡军帅 阅读(295) 评论(0) 推荐(0)
摘要: 查看菜鸟教程:http://www.runoob.com/mysql/mysql-install.html一、问题描述在启动MYSQL时出现问题:“ERROR 2003 (HY000): Can’t c... 阅读全文
posted @ 2018-10-06 23:53 蔡军帅 阅读(168) 评论(0) 推荐(0)
  2018年9月30日
摘要: 导入数据:grades grades grades V1 V2 V3 V4 V5 V6 V71 编号 1.00 2.0 3.00 4.0 5.00 ... 阅读全文
posted @ 2018-09-30 15:15 蔡军帅 阅读(238) 评论(0) 推荐(0)
摘要: 导入数据: grades<-read.table("D:/ProgramData/test1.txt",sep="\t") 求均值:mean() 求方差:sd() 保存数据:write.table(grades,"D:/ProgramData/test2.txt") 阅读全文
posted @ 2018-09-30 15:15 蔡军帅 阅读(728) 评论(0) 推荐(1)
摘要: 最近项目中运用到了R读取文件数据,所以把相关好用的、经过验证的方法总结了一下,有效避免下次入坑。 1. R读取txt文件 使用R读取txt文件直接使用read.table()方法进行读取即可,不需要加载额外的包。 1 注意,此处的na.strings = c("NA") 的意思是文件中的缺失数据都是 阅读全文
posted @ 2018-09-30 14:49 蔡军帅 阅读(139757) 评论(0) 推荐(3)
摘要: 最近项目中运用到了R读取文件数据,所以把相关好用的、经过验证的方法总结了一下,有效避免下次入坑。1. R读取txt文件使用R读取txt文件直接使用read.table()方法进行读取即可,不需要加载额外的... 阅读全文
posted @ 2018-09-30 14:49 蔡军帅 阅读(1122) 评论(0) 推荐(0)
摘要: 1、因子 因子的设计思想来源于统计学的名义变量,或称为分类变量。 分类变量的值本质上不是数字,而是对应为分类/分组。 因子分为无序因子和有序因子。因子的类别称为level,结合level,因子在内部被编码... 阅读全文
posted @ 2018-09-30 14:17 蔡军帅 阅读(169) 评论(0) 推荐(0)
上一页 1 ··· 74 75 76 77 78 79 80 81 82 ··· 164 下一页