摘要:
Plot x <- c(1, 2, 3, 4, 5) y <- c(3, 7, 8, 9, 12) plot(x, y) 其他参数: type='l' main="My Graph" xlab="The x-axis" ylab="The y axis" col="red" cex=2, 点的大小, 阅读全文
摘要:
title: "Lectures" author: '01' date: "2022-09-23" output: pdf_document knitr::opts_chunk$set(echo = TRUE) R-basics R变量的命名格式 必须以字母开头 只能包含字母、数字、下划线和.。 对 阅读全文
摘要:
R变量的命名格式 必须以字母开头 只能包含字母、数字、下划线和.。 对大小写敏感 不能是保留关键字 数据类型(mode) numeric - (10.5, 55, 787) integer - (1L, 55L, 100L, where the letter "L" declares this as 阅读全文
摘要:
两种方式: edit()自动生成一个红色的表格,列名会自动的放上去,不够的会显示var5,var6,var7 mydata <- data.frame( age = numeric(0), gender = character(0), weight = numeric(0) ) mydata <- 阅读全文
摘要:
关于R基础 有3个需要总结的地方 R的画图(统计学图,ggplot) R的基本语法 R dataframe相关 Plot plot(1,2) plot(c(1, 2, 3, 4, 5), c(3, 7, 8, 9, 12)) x <- c(1, 2, 3, 4, 5) y <- c(3, 7, 8, 阅读全文