Re: [R] X axis labels are not fully shown when using pareto.chart function

2020-09-16 Thread Luca Scrucca
The following works: library(qcc) x = dataset2$Points names(x) = dataset2$School par(oma = c(2,0,0,0)) pareto.chart(x) You may need to adjust the oma parameter. BTW, next time please provide a reproducible example. I spent more time to figure out which is the correct variable/lab

Re: [R] Loop for two columns and 154 rows

2020-09-16 Thread PIKAL Petr
Hi It is recommended to keep your emails in Rhelp, there are others who could give you answer. If I understand correctly you want to take 2 lines in your data frame and test them if they are same but just reversed. One option could be to split the whole data frame in chunks. Based on