Linear Models with R 、[rstudio](https://posit.cloud/content/5455615) 、[r-pkgs](https://r-pkgs.org/)、[r-graphics](https://r-graphics.org/) ----
R 一共收录文章71篇, 一共有8页, 每页显示10
置顶
R三大绘图系统Base、lattice、ggplot

基本绘图系统(Base Plotting System)直观实时的反应绘图和分析数据的逻辑graphics包中plot/hist/boxplot/points/lines/text/title/axi....

2023-05-10 10:11:20 PUBLISHED

置顶
R面向对象

创建类setClass("Person", slots = list(name = "character", age = "numer....

2023-03-26 20:29:00 PUBLISHED

置顶
R4.0的安装及R包安装

R源码安装./configure --prefix=/pathto/R_3.6.0 --enable-R-shlib CPPFLAGS="-I/usr/include -I/path/z....

2023-02-26 01:27:56 PUBLISHED

置顶
R调用C/CPP及R包编写

https://github.com/wangyang1749/R_Create_Package_ExampleR调用C创建test.c文件void hello(char **greeting) { ....

2023-02-21 09:30:22 PUBLISHED

置顶
学习资源

源码编译安装https://blog.csdn.net/weixin_42347486/article/details/116667172https://zhuanlan.zhihu.com/p/51....

2022-10-09 16:17:09 PUBLISHED

置顶
R语言tidyverse使用总结

安装与介绍官方传送门# install.packages('tidyverse', repos = "https://mirrors.tuna.tsinghua.edu.cn/CRAN/&q....

2024-01-30 08:40:42 PUBLISHED

置顶
R语言函数使用总结

固定参数函数f1 <- function(a,b=2){ message(a,b) return(a+b) # 没有return返回最后一条语句}b <- f1(5) # 52....

2023-03-26 20:17:45 PUBLISHED