R免费使用;统计工具;# 注释块注释:anything=""编辑器:Rsutdio,Tinn-R,Eclipse+StatET;中文会有乱码?,help; ?boxplot, help(boxplot),help("[[")source('abc.R')library(ggplot2)install...
分类:
编程语言 时间:
2014-10-12 13:30:17
阅读次数:
335
format格式与svn版本号我猜对应如下:1.4.x 对应 format 21.5.x 对应 format 3……1.8.x对应 format 6那么每个format创建出的repo要用对应的版本checkout,否则会出错。具体解决方案见:http://lailife.blog.163.com/...
分类:
Web程序 时间:
2014-10-12 13:01:57
阅读次数:
197
python R download library...
分类:
编程语言 时间:
2014-10-12 03:04:47
阅读次数:
418
Just a few weeks ago, I had a discussion with one of my colleagues about how to manage the transaction in our innovation project, and I found it a big bang knowledge when dig into details. So I want to go through these details and give an internal knowledg...
分类:
编程语言 时间:
2014-10-12 03:04:07
阅读次数:
182
int arr[][] ={{1,2,3},{4,5,6,7},{9}};boolean found = false;for(int i=0;i<arr.length&& !found;i++) {for(int j=0;j<arr[i].length;j++){System.out.println...
分类:
编程语言 时间:
2014-10-11 23:45:46
阅读次数:
249
4.2.2 Stateless(状态无关的)JavaScript库
为了让开发轻松点, 使用一个JavaScript接口来和数据库交互是个好主意, 它在QML中提供了方便的方法;
在QtCreator中创建一个新的JavaScript文件 noteDB.js, 保证选择了 State Library选项; 这样使得noteDB.js用起来像一个库, 提供了stateless的h...
分类:
其他好文 时间:
2014-10-11 19:33:47
阅读次数:
285
Linux提供了丰富的帮助手册,当你需要查看某个命令的参数时不必到处上网查找,只要man一下即可。
Linux 的man手册共有以下几个章节:
1、Standard commands (标准命令)
2、System calls (系统调用)
3、Library functions (库函数)
4、Special devices (设备说明)
5、File formats (文件格式...
分类:
系统相关 时间:
2014-10-11 18:49:55
阅读次数:
177
今天在签出程序时,更改了profile,当再次进行整理编译项目时,就出现了这个问题,在xCode 6 开发环境下出现了,
出现这个错误提示Code Sign error: Provisioning profile XXXX can't be found 经查找 找到解决方案与大家共享,解决方案如下:
1.先copy上面那行出错信息,然后关闭这个项目,打开finder到你的项目文件xxxx.xc...
分类:
其他好文 时间:
2014-10-11 18:20:35
阅读次数:
133
使用JNI开发,需要在java端声明本地方法,并在jni层实现本地方法。有时运行项目时会先抛出异常:No implementation found for native xxx然后直接挂掉:java.lang.UnsatisfiedLinkError: Native method not found...
分类:
其他好文 时间:
2014-10-11 17:22:05
阅读次数:
655
Windows 提供了Crypto API, 使用这些API, 我们可以比较轻松的实现Hash,签名等工作。MSDN上有很多信息,
http://technet.microsoft.com/zh-cn/library/aa382371
下面的例子是对一个给定的字符串进行hash计算,并且把hash值签名。给定的字符串如下:
BYTE *pbBuffer = (BYTE *)"The data...