服务器画图plots不显示,Rstudio的Plots不显示图形

本文详细讲述了在RStudio中使用plot方法创建折线图时遇到的空白显示问题,通过调整代码顺序解决了文件输出位置,确保了png图表成功生成。步骤包括数据获取、时间序列转换、打印数据和最终图形绘制及保存。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

问题描述:使用plot方法画折线图,在Rstudio的Plots中没有显示出来,显示的空白

b08b45b1a5b6442b3fff394a0d3b61ef.png

代码如下:

# Get the data points in form of a R vector.

rainfall

# Convert it to a time series object.

rainfall.timeseries

# Print the timeseries data.

print(rainfall.timeseries)

# Give the chart file a name.

png(file = "rainfall.png")

# Plot a graph of the time series.

plot(rainfall.timeseries,type = "o")

# Save the file.

dev.off()

解决办法:将

# Give the chart file a name.

png(file = "rainfall.png")

放置到plot后

# Get the data points in form of a R vector.

rainfall

# Convert it to a time series object.

rainfall.timeseries

# Print the timeseries data.

print(rainfall.timeseries)

# Plot a graph of the time series.

plot(rainfall.timeseries,type = "o")

# Give the chart file a name.

png(file = "rainfall.png")

# Save the file.

dev.off()

9e504f097c2b241dd2f7e9e6f9d69879.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值