rstudio输出的图
时间: 2024-04-29 13:21:28 浏览: 86
图形的输出
RStudio 可以输出多种类型的图形,常见的有散点图、线图、柱状图、饼图等。以下是一些输出图形的 R 代码示例:
散点图:
```r
library(ggplot2)
ggplot(mtcars, aes(x = wt, y = mpg)) + geom_point()
```
线图:
```r
library(ggplot2)
ggplot(economics, aes(x = date, y = unemploy)) + geom_line()
```
柱状图:
```r
library(ggplot2)
ggplot(diamonds, aes(x = cut, fill = clarity)) + geom_bar()
```
饼图:
```r
library(ggplot2)
ggplot(mpg, aes(x = "", fill = drv)) + geom_bar(width = 1) + coord_polar(theta = "y")
```
这些代码会在 RStudio 的“Plots”窗格中输出相应的图形。
阅读全文