كيفية استخدام الخلفية الشفافة في 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