1. 条形图 barplot() 2. 饼图:饼图在商业世界中无所不在,然而多数统计学家,包括R相应文档的编写者,都对它持否定态度。相对于饼图,他们更推荐使用条形图或点图,因为相对于 面积,人们对长度的判断更为精确 pie() pie3D() 3. 直方图 :可以展示连续变量的分布. hist(x, ...
分类:
编程语言 时间:
2017-12-02 22:04:31
阅读次数:
280
If you're storing them as strings rather than bit patterns: IPv4 addresses consist of four 3-digit decimal characters with three . separators, so that ...
分类:
数据库 时间:
2017-12-02 19:02:54
阅读次数:
200
Don't let the past steal your present. 别让过去悄悄偷走了我们的当下。 We take what we can get and make the best of it. 我们取我们所能取,好好地享用。 From The House on Mango Street ...
分类:
其他好文 时间:
2017-12-01 15:15:10
阅读次数:
157
开发过程中会遇到很多需要时间戳和标准时间相互转化的需求,稍大型项目会引入类似moment.js,但对于简单h5页面,更多的需要简单的方法来处理日期 ...
分类:
Web程序 时间:
2017-11-30 18:09:38
阅读次数:
233
1连接字符串 - paste()函数 paste(..., sep = " ", collapse = NULL) ...表示要组合的任意数量的自变量。 sep表示参数之间的任何分隔符。 它是可选的。 collapse用于消除两个字符串之间的空格。 a <- "Hello" b <- 'How' c ...
分类:
其他好文 时间:
2017-11-30 17:17:47
阅读次数:
144
今天遇到一个日期转换问题需要生成 如:2017-11-29 星期三 16:45 的日期格式的数据,所以记录一下。 获取某天是星期几的方法: ...
分类:
其他好文 时间:
2017-11-29 18:21:24
阅读次数:
171
springboot mybatis 批量insert 操作 直接上代码: 1.首先要在pom.xml中导入包: springboot 1.5.8 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring- ...
分类:
编程语言 时间:
2017-11-28 20:37:26
阅读次数:
172
7.面向对象高级编程 7.1使用__slots__ python动态语言,new 对象后绑定属性和方法 Tip:给一个实例绑定的方法,对其他对象无效。可以通过对class绑定后,所有对象可以调用该方法 如果我们现在只有实例可以添加属性,使用__slots__,只允许对Student实例添加name和 ...
分类:
编程语言 时间:
2017-11-28 18:42:52
阅读次数:
170
1082. Read Number in Chinese (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue 时间限制 400 ms 时间限制 400 ms 内存限制 65536 kB 内存限制 65536 ...
分类:
其他好文 时间:
2017-11-27 13:32:12
阅读次数:
137
#OS模块 #os模块就是对操作系统进行操作,使用该模块必须先导入模块: import os #getcwd() 获取当前工作目录(当前工作目录默认都是当前文件所在的文件夹) result = os.getcwd() print(result) #chdir()改变当前工作目录 os.chdir('... ...
分类:
编程语言 时间:
2017-11-27 00:11:49
阅读次数:
173