Python练习5

计算肽链的分子量 http://rosalind.info/problems/prtm/ 值得注意的是,最后一个氨基酸中一个水分子的分子量18.01056 Da. 但我的结果中没有加上这个水,仍然提示我为正确答案,可见还

【debug】C stack usage is too close to the limit

问题描述 1 Error: C stack usage 9964644 is too close to the limit 这似乎是由于数据过大导致 解决方案 1 2 3 4 5 $ ulimit -s # print default 10240 $ R --slave -e 'Cstack_info()["size"]' size 9961472 这个值本应该等于10240*1024=

ggplot设置次级刻度

在basic plot中实现 1 minor.tick(nx=3, ny=3, tick.ratio=0.5) ggplot实现 在ggplot中反而没有发现很便捷的解决方案,虽然在scale_x_continuous(

长短数据格式转换

Wide to long 1 gather(data, key, value, ..., na.rm = FALSE, convert = FALSE) data: The dataset to be modified (in our case, seps) key: the name of the new “naming” variable (year) value: the name of the new “result” variable (value) na.rm: whether missing values are removed (this dataset doesn’

将factor转为numeric

预防方法 在数据处理过程中,时常会自动将字符串转变为因子,这对于后续的操作可能会带来困难。为避免此类麻烦,可以在程序中声明禁止chr转为fac