语法: plot(x, y, ...) x,y分别是两个向量,x为横轴坐标,y为纵轴坐标 其他参数: type= "p" for points, 散点图 默认 "l" for lines, 线图 "b" for both, 描点连线,点与线不相连 "c" for the lines part alone of "b", 线图,点空白 "o" for both ‘overplo
A data frame is used for storing data tables. It is a list of vectors of equal length. For example, the following variable df is a data frame containing three vectors n, s, b. > n = c(2, 3, 5) > s = c("aa", "bb", "cc")