Reputation: 1351
HERE I WANT TO PUT IN BENGALI LANGUAGE IN X LABELS AND Y LABELS. HOW CAN I PUT IT?
x<-c(1:10) y<-c(1:10) plot(x,y,xlabel=" বাংলা " ,ylabel="বাংলা ")
Upvotes: 0
Views: 78
Reputation: 671
It is xlab and ylab:
plot(x,y,xlab="বাংল",ylab = "বাংল")
Upvotes: 3