วิธีใช้พื้นหลังโปร่งใสใน ggplot2


คุณสามารถใช้ไวยากรณ์ต่อไปนี้เพื่อสร้างพื้นหลังโปร่งใสในพล็อตใน ggplot2:

 p+
  theme(
    panel. background = element_rect(fill=' transparent '), #transparent panel bg
    plot. background = element_rect(fill=' transparent ', color= NA ), #transparent plot bg
    panel. grid . major = element_blank(), #remove major gridlines
    panel. grid . minor = element_blank(), #remove minor gridlines
    legend. background = element_rect(fill=' transparent '), #transparent legend bg
    legend. box . background = element_rect(fill=' transparent ') #transparent legend panel
  )

หากคุณตัดสินใจที่จะส่งออกพล็อตโดยใช้ ggsave() อย่าลืมระบุว่าพื้นหลังควรโปร่งใส:

 ggsave(' myplot.png ' , p, bg = ' transparent ' )

ตัวอย่างต่อไปนี้แสดงวิธีใช้ไวยากรณ์นี้ในทางปฏิบัติ

ตัวอย่าง: การใช้พื้นหลังโปร่งใสใน ggplot2

รหัสต่อไปนี้แสดงวิธีสร้าง boxplot ที่จัดกลุ่มอย่างง่ายใน ggplot2:

 library (ggplot2) 

#make this example reproducible
set. seeds (1)

#create dataset
data <- data. frame (team=rep(c(' A ', ' B ', ' C '), each= 50 ),
                   program=rep(c(' low ', ' high '), each= 25 ),
                   values=seq(1:150)+sample(1:100, 150, replace= TRUE ))

#create boxplot
ggplot(data, aes (x=team, y=values, fill=program)) + 
  geom_boxplot() 

เราสามารถใช้โค้ดต่อไปนี้เพื่อสร้างพื้นหลังโปร่งใสสำหรับโครงเรื่อง:

 library (ggplot2) 

#make this example reproducible
set. seeds (1)

#create dataset
data <- data. frame (team=rep(c(' A ', ' B ', ' C '), each= 50 ),
                   program=rep(c(' low ', ' high '), each= 25 ),
                   values=seq(1:150)+sample(1:100, 150, replace= TRUE ))

#create boxplot
p <- ggplot(data, aes (x=team, y=values, fill=program)) + 
       geom_boxplot() +
       theme(
         panel. background = element_rect(fill=' transparent '),
         plot. background = element_rect(fill=' transparent ', color= NA ),
         panel. grid . major = element_blank(),
         panel. grid . minor = element_blank(),
         legend. background = element_rect(fill=' transparent '),
         legend. box . background = element_rect(fill=' transparent ')
       )

#display boxplot
p 

จากนั้นเราสามารถส่งออกเส้นทางนี้เป็นไฟล์ PNG โดยระบุว่าพื้นหลังจะต้องโปร่งใสในภาพที่ส่งออก:

 ggsave(' grouped_boxplot.png ' , p, bg = ' transparent ' )

หากฉันเปิดไฟล์ที่ส่งออกนี้บนคอมพิวเตอร์ ฉันเห็นว่าพื้นหลังโปร่งใส:

แหล่งข้อมูลเพิ่มเติม

วิธีเปลี่ยนขนาดตัวอักษรใน ggplot2
วิธีลบคำอธิบายแผนภูมิใน ggplot2
วิธีลบเส้นตารางใน ggplot2

เพิ่มความคิดเห็น

อีเมลของคุณจะไม่แสดงให้คนอื่นเห็น ช่องข้อมูลจำเป็นถูกทำเครื่องหมาย *