91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

R語言ggplot2繪圖設置X軸刻度,字體大小及繪圖區大小

發布時間:2020-05-18 20:08:19 來源:網絡 閱讀:97701 作者:qizok 欄目:編程語言
> colnames(data1)[seq(2,ncol(data1), 15)]
 [1] "AAAA" "AAGG" "ATGC" "ACGT" "AGGA" "TACG" "TTCC" "TCCT" "TGCA" "CATG"
[11] "CTTC" "CCTT" "CGTA" "GAAG" "GTAC" "GCAT" "GGAA" "GGGG"

> ggplot(data2[data2$name==11,], aes(x = Tetra, y = Freq, group = 1)) + geom_line(size=0.2) + theme_bw() + scale_x_discrete(breaks = colnames(data1)[seq(2,ncol(data1), 15)])

// scale_x_discrete 可以設置x軸顯示的刻度,調整稀疏程度,比如 breaks=seq(0,12200,1000)

> ggplot(data2[data2$name==11,], aes(x = Tetra, y = Freq, group = 1)) + geom_line(size=0.2) + theme_bw() + scale_x_discrete(breaks = colnames(data1)[seq(2,ncol(data1), 15)]) + theme(axis.text.x = element_text(face="bold", color="blue", size=8))

// ggplot2 中有很多 element可以調整矩形,字體,線段的屬性,比如 element_rect, element_line, element_blank, element_text
// http://docs.ggplot2.org/0.9.2.1/theme.html


// panel.margin 用于 theme() 中,主要用于調整繪圖區域各圖之間的間距
// margin 用于element中,調整element 與周圍圖形元素的距離

// plot.margin 用于 theme()中,用于調整整個繪圖區的邊緣位置

> ggplot(data2[data2$name==11,], aes(x = Tetra, y = Freq, group = 1)) + geom_line(size=0.2) + theme_bw() + scale_x_discrete(breaks = colnames(data1)[seq(2,ncol(data1), 15)]) + theme(axis.text.x = element_text(face="bold", color="blue", size=8), plot.margin = unit(c(2,3,3,4),"cm"))

有三種方法可以設置x軸或y軸 刻度范圍

> p + scale_x_continuous(limits = c(-5,15))   // 方法一
> p + xlim(-5,15)   // 方法二

> p + xlim(min(dt$A, 0)*1.2, max(dt$A)*1.2)   // 一般使用倍數來限定大小,注意定義最小值的方式
> 

// 在theme 中可以用 axis.title.x或y 調整坐標軸的標識
//  
geom_text(aes(label = "point_k"))   // 這個可以給點添加文字label

// scale_size 可以把圖中的數據點轉化為不同大小的點

// //


原始繪圖代碼:

> library(ggplot2)
> library(reshape2)
> setwd("/Users/m/working/R_bin_two/new_bin")
> data1 <- read.table("result_data_g2.txt", header=T, check.names = F, fill =T)
> data2 <- melt(data1, id="name")
> colnames(data2)[2:3] <- c("Tetra","Freq")
> data2[,1] <- as.factor(data2[,1])
> p <- ggplot(data2, aes(x = Tetra, y = Freq, group = name, colour = name)) 
> p + geom_line(size=0.2) 
> p + theme_bw() 
> p + scale_x_discrete(breaks = colnames(data1)[seq(2,ncol(data1), 15)]) 
> p + guides(color = guide_legend(ncol=6))
> p + theme(axis.text.x = element_text(face="bold", color="blue", size=8), plot.margin = unit(c(2,3,3,4),"cm"))


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

隆子县| 子长县| 富源县| 宁陕县| 霍林郭勒市| 来凤县| 兰坪| 翁牛特旗| 庆城县| 安顺市| 屏东市| 新泰市| 盐亭县| 枝江市| 宝丰县| 郑州市| 湖口县| 沁水县| 嘉义市| 巴中市| 泰和县| 肇东市| 南和县| 临夏市| 扶沟县| 榆社县| 梧州市| 启东市| 马龙县| 崇明县| 潼关县| 桦川县| 九江市| 布拖县| 庆阳市| 弋阳县| 临桂县| 江北区| 仁怀市| 阳东县| 资中县|