溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么用ggplot2的geom_point繪制散點(diǎn)圖

發(fā)布時(shí)間:2022-03-18 17:26:33 來源:億速云 閱讀:615 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“怎么用ggplot2的geom_point繪制散點(diǎn)圖”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

ggplot2可以利用geom_point繪制散點(diǎn)圖,而點(diǎn)的形狀控制參數(shù)shape會(huì)顯示多少效果呢?(注意此處只介紹shape的設(shè)定,不是aes(shape)映射

可以通過查詢?shape

獲得以下內(nèi)容:

# Shape examples
# Shape takes four types of values: an integer in [0, 25],
# a single character-- which uses that character as the plotting symbol,
# a . to draw the smallest rectangle that is visible (i.e., about one pixel)
# an NA to draw nothing
p + geom_point()
p + geom_point(shape = 5)
p + geom_point(shape = "k", size = 3)
p + geom_point(shape = ".")
p + geom_point(shape = NA)

1、[0,25]之間的數(shù)值表示不同的形狀

利用下數(shù)據(jù)固定X,Y,shape

dat
   X Y shape
1  1 6     0
2  2 6     1
3  3 6     2
4  4 6     3
5  5 6     4
6  1 5     5
7  2 5     6
8  3 5     7
9  4 5     8
10 5 5     9
11 1 4    10
12 2 4    11
13 3 4    12
14 4 4    13
15 5 4    14
16 1 3    15
17 2 3    16
18 3 3    17
19 4 3    18
20 5 3    19
21 1 2    20
22 2 2    21
23 3 2    22
24 4 2    23
25 5 2    24
26 1 1    25

代碼中確定X ,Y,在shape中設(shè)定下形狀。

library(ggplot2)

p=ggplot(dat,aes(x=X,y=Y))+
  geom_point(shape=dat$shape,size=10)

print(p)

每個(gè)位置對(duì)應(yīng)的形狀的數(shù)字(結(jié)合數(shù)據(jù)和圖片)

如果統(tǒng)一一個(gè)形狀呢?

p=ggplot(dat,aes(x=X,y=Y))+
  geom_point(shape=5,size=10)

print(p)

2、如果等于“k"呢?將顯示"k"

p=ggplot(dat,aes(x=X,y=Y))+
  geom_point(shape="k",size=10)

print(p)

3、如果shape是"." 將繪出有一個(gè)非常小的點(diǎn)(此時(shí)的size并沒能調(diào)整到大?。?/p>

p=ggplot(dat,aes(x=X,y=Y))+
  geom_point(shape=".",size=20)

print(p)

4如果shape是NA 則隱藏點(diǎn)

p=ggplot(dat,aes(x=X,y=Y))+
  geom_point(shape=NA,size=10)

print(p)

“怎么用ggplot2的geom_point繪制散點(diǎn)圖”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI