您好,登錄后才能下訂單哦!
這篇文章主要介紹R語言中colors()的顏色有哪些,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
R進行繪圖多會涉及顏色搭配問題,利用colors()可以獲得R種的657種顏色名稱。 head(colors(),20) [1] "white" "aliceblue" "antiquewhite" "antiquewhite1" [5] "antiquewhite2" "...
R進行繪圖多會涉及顏色搭配問題,利用colors()可以獲得R種的657種顏色名稱。
head(colors(),20) [1] "white" "aliceblue" "antiquewhite" "antiquewhite1" [5] "antiquewhite2" "antiquewhite3" "antiquewhite4" "aquamarine" [9] "aquamarine1" "aquamarine2" "aquamarine3" "aquamarine4" [13] "azure" "azure1" "azure2" "azure3" [17] "azure4" "beige" "bisque" "bisque1"
每個顏色名稱具體對應的顏色,可以通過繪圖呈現出來
pdf(file = "RColors.pdf",height = 20,width = 30) par(mar=c(0,0,0,0)) plot(0, 0, type = "n", xlim = c(0, 1), ylim = c(0, 1), axes = FALSE, xlab = "", ylab = "") line=30 col=22 rect( rep((0:(col - 1)/col),line) , sort(rep((0:(line - 1)/line),col),decreasing=T) , rep((1:col/col),line) , sort(rep((1:line/line),col),decreasing=T), border = "light gray" , col=colors()[seq(1,line*col)]) text( rep((0:(col - 1)/col),line)+0.02 , sort(rep((0:(line - 1)/line),col),decreasing=T)+0.015 , colors()[seq(1,line*col)] , cex=0.9) dev.off()
以上是“R語言中colors()的顏色有哪些”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。