博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ggplot ggplot2 画图
阅读量:5020 次
发布时间:2019-06-12

本文共 1466 字,大约阅读时间需要 4 分钟。

 

折线图-ggplot2 

http://blog.163.com/yugao1986@126/blog/static/6922850820131161531421/
http://blog.sina.com.cn/s/blog_7cffd1400101f50v.html
《R Graphics Cookbook-By Winston Chang》
#======================
折线图
library(ggplot2)  #作图
library(gcookbook)  #案例数据
library(plyr)  #ddply()、desc()等函数
# In addition to the variables mapped to the x- and y-axes, map another
# (discrete) variable to colour or linetype Load plyr so we can use ddply()
# to create the example data set Summarize the ToothGrowth data
tg <- ddply(ToothGrowth, c("supp", "dose"), summarise, length = mean(len))
# Map supp to colour
ggplot(tg, aes(x = dose, y = length, colour = supp)) + geom_line()

 

==============

# save as :

# figure_TSS_5k_methy_level_Male_Adipose.R.pdf
library(ggplot2)  #作图
setwd("E:\\_data\\")
group<-rep("xxxx",200)
window_index<-rep(1,200)
methy<-rep(0.0001,200)
inputfile_name=paste0("level.average")  
mydata <- read.table(inputfile_name, header=FALSE)
for(ii in 1:100)
{
  group[ii]<-"MAL"
  window_index[ii]<-ii
  methy[ii]<-mydata[1,ii]
}
inputfile_name=paste0(".level.average")  
mydata <- read.table(inputfile_name, header=FALSE)
for(ii in 1:100)
{
  group[ii+100]<-"MAC"
  window_index[ii+100]<-ii
  methy[ii+100]<-mydata[1,ii]
}
   
mydata<-data.frame(group=group,window_index=window_index,methy=methy)
ggplot(mydata, aes(x = window_index, y =methy , colour = group)) + geom_line()
==============
dev.new(width=5, height=4)  #窗口大小尺寸
==============

转载于:https://www.cnblogs.com/emanlee/p/4003827.html

你可能感兴趣的文章
【特征值】特征值的几何含义
查看>>
配置魔药
查看>>
Java 多态详解
查看>>
收藏别人的小类库
查看>>
原型设计工具
查看>>
Oracle11gr2_ADG管理之switchover实战
查看>>
使用Spring 线程池
查看>>
Linux学习笔记:rm删除文件和文件夹
查看>>
理解管理信息系统
查看>>
JZOJ5146:港湾
查看>>
列表类型内置方法
查看>>
Object、Function、String、Array原生对象扩展方法
查看>>
了解一下 Linux 上用于的 SSH 图形界面工具
查看>>
设计模式之组合模式
查看>>
insertRule()与addRule()创建规则
查看>>
FMDB中 databaseWithPath 的使用问题
查看>>
机器学习好网站
查看>>
python 中的 sys , os 模块用法总结
查看>>
解题:国家集训队 Middle
查看>>
响应者链
查看>>