侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

R生成图

2023-11-04 星期六 / 0 评论 / 0 点赞 / 28 阅读 / 522 字

# Create data for the graph.x <- c(21, 62, 10, 53)labels <- c("London", "New York", "Singapore", "Mu

# Create data for the graph.x <- c(21, 62, 10, 53)labels <- c("London", "New York", "Singapore", "Mumbai")# Give the chart file a name.png(file = "F:/city.jpg")# Plot the chart.pie(x,labels)# Save the file.dev.off()

运行结果

在R Console上运行,也可以在ubuntu上运行

广告 广告

评论区