上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 106 下一页
摘要: https://www.jianshu.com/p/ae68ae6c68dd 1.library包之后直接输入函数名 2.methods()查看具体的对象,带星标的类函数是看不到的, 3.在CRAN下载源码。 阅读全文
posted @ 2020-11-07 14:44 lypbendlf 阅读(111) 评论(0) 推荐(0)
摘要: https://www.rdocumentation.org/packages/DESeq2/versions/1.12.3/topics/estimateSizeFactorsForMatrix 1.描述 Given a matrix or data frame of count data, th 阅读全文
posted @ 2020-11-04 15:35 lypbendlf 阅读(1193) 评论(0) 推荐(0)
摘要: 1.需要安装XML Cannot find xml2-config https://stackoverflow.com/questions/7765429/unable-to-install-r-package-in-ubuntu-11-04 sudo apt-get update sudo apt 阅读全文
posted @ 2020-11-04 11:44 lypbendlf 阅读(980) 评论(1) 推荐(0)
摘要: 1.E: 无法定位软件包问题 https://blog.csdn.net/beizhengren/article/details/77678603 修改source.list文件,其中出现了deb url这样类似命令的内容 2.deb是什么? https://ubuntuqa.com/article 阅读全文
posted @ 2020-11-04 11:17 lypbendlf 阅读(559) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/yao_zou/article/details/50759301 https://blog.csdn.net/e5Max/article/details/50180905 https://www.cnblogs.com/dolphin0520/archiv 阅读全文
posted @ 2020-11-03 13:51 lypbendlf 阅读(107) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/zhangxiao93/article/details/50599104,这个讲的很好。 1.this指针本质 它是一个常量指针,只能指向一个对象,不能更改。 2.常量对象与常量函数之间 常量对象不能更改数据成员,this指针是指向常量的常量指针, 它不能 阅读全文
posted @ 2020-11-02 14:59 lypbendlf 阅读(192) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_39539470/article/details/81329102,这个讲的很不错了。 const可以修饰类的成员函数,那么这个函数就不能更改数据成员了,因为对应的隐参数this会被改为一个指向变量的指针, 不能修改数据成员的值。 阅读全文
posted @ 2020-10-30 01:03 lypbendlf 阅读(332) 评论(0) 推荐(0)
摘要: 1.奇怪的现像: int get(int ); int get(const int); //上面这样是可以的,不报错 int get(int ); double get(const int); //error: ambiguating new declaration of 'double get(i 阅读全文
posted @ 2020-10-29 21:07 lypbendlf 阅读(300) 评论(0) 推荐(0)
摘要: 1.指向常量的指针和指针常量 int a=0; const int *const p=&a; // *p=2;//error: assignment of read-only location '*(const int*)p' int *const p1=&a; *p1 =3;//正确 在p的生命中 阅读全文
posted @ 2020-10-29 20:11 lypbendlf 阅读(194) 评论(0) 推荐(0)
摘要: https://www.zhihu.com/question/26872913 这个解释非常好,重复包含就是重复定义,那么就会报错了。 阅读全文
posted @ 2020-10-29 17:52 lypbendlf 阅读(236) 评论(0) 推荐(0)
上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 106 下一页