商业预测 初识R

  1. 打开帮助文档首页,查阅其中的"Introduction to R"

help Rhelp

  1. 安装vcd包

install.packages("vcd")

  1. 列出此包中可用的函数和数据集

ls("package:vcd") / data(package = "vcd")

  1. 载入包并阅读数据集Arthritis的描述

library("v. d") / ?Arthritis

  1. 显示数据集Arthritis的内容

查看数据集结构 str(Arthritis) 查看数据集前几行 head(Arthritis)

  1. 运行该数据集自带的实例

运行数据集自带的示例

例如,使用交叉表和图形可视化

创建一个交叉表

table(ArthritisImproved, ArthritisTreatment)

绘制交叉表的条形图

mosaic(~ Improved + Treatment, data = Arthritis,

main = "WHY Test",

labeling_args = list(set_varnames = c("Improved", "Treatment")))

  1. 退出 q()
相关推荐
生信摆渡13 小时前
R语言-快速对多个变量取交集
开发语言·数据库·r语言
biomooc15 小时前
R语言/Rstudio 报错
开发语言·r语言
Hello World and You21 小时前
R ggplot2 绘图细节 geom_text展示不全 y轴坐标细节 x轴标题
开发语言·r语言
NiNg_1_2343 天前
R语言基础入门详解
开发语言·r语言
rock——you3 天前
R环境依赖的备份与恢复全攻略
开发语言·r语言
biomooc3 天前
R语言 | 宽数据变成一列,保留对应的行名和列名
开发语言·r语言
生信学习小达人3 天前
R package安装的几种方式
开发语言·r语言
卡卡_R-Python3 天前
训练误差or测试误差与特征个数之间的关系--基于R语言实现
开发语言·回归·r语言
亚图跨际5 天前
MATLAB和Python及R瑞利散射
python·matlab·r语言·光学·瑞利散射
不是伍壹5 天前
【R语言】字符类型转换
开发语言·r语言