I have a table that looks like this:
1β 2β 1.0199e-01 2.2545e-01 2.5303e-01 6.5301e-01 1.2151e+00 1.1490e+00
etc.
I want to make a field code for this data. I use the following commands:
pdf('rtest.pdf') w1<-read.table("data_CMR",header=T) w2<-read.table("data_C",header=T) boxplot(w1[,], w2[,], w3[,],outline=FALSE,names=c(colnames(w1),colnames(w2),colnames(w3))) dev.off()
The problem is not the beta symbol (β), I get two dots (..) in the output.
Any suggestions to solve this problem.
Thanks in advance.
source share