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

GeneralizedLinearModels

2025-02-06 22:26:12 PUBLISHED

rstudio容器的安装与使用

资源链接rstudio, tidyverse, verse, geospatial以下命令需要确保docker已经安装,如果docker没有安装请参考这里安装运行以下命令启动预装了tidyverse的....

2024-02-13 10:26:17 PUBLISHED

R语言操作JSON

library(rjson)json_string <- '{"name": "John", "age": 30}'data <....

2024-01-24 16:04:47 PUBLISHED

R语言并行计算

https://zhuanlan.zhihu.com/p/24547984....

2023-06-24 12:53:55 PUBLISHED

IRanges

2023-03-09 21:49:55 PUBLISHED

可视化的R包汇总

ggupsetBiocManager::install("ggupset")ggnewscaleBiocManager::install("ggnewscale&quot....

2023-02-21 09:45:12 PUBLISHED

enrichplot源码阅读

GuangchuangYu/enrichplot/blob/master/R/dotplot.R....

2023-02-21 13:08:48 PUBLISHED

随机森林 (Random Forest)

在随机森林方法中,创建了大量决策树。每个观察结果都被输入到每个决策树中。每个观察的最常见结果用作最终输出。新的观察结果被输入到所有树中,并对每个分类模型进行多数表决。数据准备加载R包library(r....

2023-04-23 14:10:21 PUBLISHED

One-Way ANOVA

方差分析主要用于多个样本均数比较的假设检验,因为当我们使用t检验进行多组样本间均数的假设检验时,常常会增加一类错误。方差分析的主要思想是分解变异,即将总变异分解为处理因素引起的变异和随机误差引起的变异....

2022-08-22 19:53:05 PUBLISHED

R Formula Tutorial

- for removing terms;: for interaction;* for crossing;%in% for nesting; And^ for limit crossing to t....

2022-08-21 20:24:36 PUBLISHED