列表和数据框
1.列表
list函数创建列表
> (a_list 1,-3),nrow=2),asin))
[[1]]
[1] 1 1 2 5 14 42
[[2]]
[1] "Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"
[...
分类:
其他好文 时间:
2014-08-02 10:08:33
阅读次数:
303
《鸟哥的linux私房菜》基础学习篇P382中说,在bash中"="与"=="是相同的,都代表判断是否相等,只不过由于其他语言一般写法使用"==",因此建议使用后者。但是实验时,二者还是有所不同。环境为ubuntu,3.5.0-43-generic #66~precise1-Ubuntu SMP Thu Oct 24 14:55:08 UTC 2013 i686 i686 i386 GNU/Lin...
分类:
系统相关 时间:
2014-07-30 23:54:55
阅读次数:
427
#!/usr/bin/python
#!*-*coding:utf-8*-*
#file:Analysis_logs.py
#importos
importstring
importre
month={‘1‘:‘Jan‘,
‘2‘:‘Feb‘,
‘3‘:‘Mar‘,
‘4‘:‘Apr‘,
‘5‘:‘May‘,
‘6‘:‘Jun‘,
‘7‘:‘Jul‘,
‘8‘:‘Aug‘,
‘9‘:‘Sep‘,
‘10‘:‘Oct‘,
‘11‘:‘Nov‘,
‘12‘:‘Dec‘}
LogFilePath=r‘/var/l..
分类:
编程语言 时间:
2014-07-29 18:20:52
阅读次数:
327
不同进制的书写方式
八进制(Octal) 0o377十六进制(Hex) 0xFF二进制(Binary) 0b11111111
不同进制之间的转换
python提供了三个内置的函数,可以用来在不同进制间做转换。
>>> oct(255), hex(255), bin(255)
('0o377', '0xff', '0b11111111')
还可以使用int函数,把字符串转成数值
>...
分类:
编程语言 时间:
2014-07-08 20:53:09
阅读次数:
195
Simple question about MySQL embedded application.Post a reply7 posts ? Page1of1Simple question about MySQL embedded application.bytanghz» Mon 11 Oct 2...
分类:
数据库 时间:
2014-07-03 20:01:47
阅读次数:
919
1、输出十六进制,十进制,八进制>>> hex = 0xff>>> print 'hex=%x,dec=%d,oct=%o' %(hex,hex,hex)hex=ff,dec=255,oct=3772、输出浮点数>>> import math>>> print '%f' %math.pi3.1415...
分类:
编程语言 时间:
2014-07-03 00:24:22
阅读次数:
263
发信人: zibuyu (得之我幸), 信区: NLP标 题: 机器学习推荐论文和书籍发信站:
水木社区 (Thu Oct 30 21:00:39 2008),
站内我们组内某小神童师弟通读论文,拟了一个机器学习的推荐论文和书籍列表。经授权发布在这儿,希望对大家有用。:)==============...
分类:
其他好文 时间:
2014-06-29 14:52:27
阅读次数:
293
int本身也要用一串字符表示,前后没有双引号,告诉编译器把它当作一个数解释。缺省情况下,是当成10进制(dec)来解释,如果想用8进制,16进制,怎么办?加上前缀,告诉编译器按照不同进制去解释。8进制(oct)---前缀加0,16进制(hex)---前缀加0x或者0X。string前后加上双引号,告...
分类:
编程语言 时间:
2014-06-27 19:30:44
阅读次数:
182
BACKGROUNDMany modern operating systems (OS's) use the Advanced Configuration and Power Interface (ACPI) standard, e.g., Rev. 3.0b, published Oct. 10,...
分类:
其他好文 时间:
2014-06-18 22:07:15
阅读次数:
382
原文链接: MySQL Memory Allocation -- by Rick James
原文日期: Created 2010; Refreshed Oct, 2012, Jan, 2014
翻译人员: 铁锚
翻译日期: 2014年5月28日
MySQL 内存分配—— 快速设置方案
如果仅使用MyISAM存储引擎,设置 key_buffer_size
为可用内存的20%,(再...
分类:
数据库 时间:
2014-06-05 06:50:03
阅读次数:
507