Sorif Hossain
Sorif Hossain

Reputation: 1351

HOW CAN I ADD ANY LANGUAGE IN LABELS BY R

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

Answers (1)

Vikram Venkat
Vikram Venkat

Reputation: 671

It is xlab and ylab:

plot(x,y,xlab="বাংল",ylab = "বাংল")

enter image description here

Upvotes: 3

Related Questions