আমার স্বচ্ছ ব্যাকগ্রাউন্ড সহ আর জি থেকে পিএনজি ফাইলগুলিতে জিপিপ্লট 2 গ্রাফিকগুলি আউটপুট করতে হবে। বেসিক আর গ্রাফিক্সের সাথে সবকিছু ঠিক আছে তবে জিপিপ্লট 2 এর সাথে কোনও স্বচ্ছতা নেই:
d <- rnorm(100) #generating random data
#this returns transparent png
png('tr_tst1.png',width=300,height=300,units="px",bg = "transparent")
boxplot(d)
dev.off()
df <- data.frame(y=d,x=1)
p <- ggplot(df) + stat_boxplot(aes(x = x,y=y))
p <- p + opts(
panel.background = theme_rect(fill = "transparent",colour = NA), # or theme_blank()
panel.grid.minor = theme_blank(),
panel.grid.major = theme_blank()
)
#returns white background
png('tr_tst2.png',width=300,height=300,units="px",bg = "transparent")
p
dev.off()
Ggplot2 এর সাথে স্বচ্ছ পটভূমি পাওয়ার কোনও উপায় আছে কি?
theme(panel.background = element_rect(fill = "transparent", colour = NA), plot.background = element_rect(fill = "transparent", colour = NA))