Displaying 1 result from an estimated 1 matches for "lr_11_yes".
Did you mean:
par_11_yes
2012 Sep 14
1
swap hist() colours
...#######
a <-read.table("http://www.scandinavia.sk/data/R/kotlina1.csv", sep=";",
header=T)
PAR_11_yes <- subset(a, a$kot_clc06 == 11)
PAR_hist11_yes <- hist(PAR_11_yes$PAR_11_p, breaks= c(0.1*0:10),
plot="FALSE")
PAR_hist11_c_yes <- (PAR_hist11_yes$counts)
LR_11_yes <- subset(a, a$kot_clc06 == 11)
LR_hist11_yes <- hist(LR_11_yes$LR_11_p, breaks= c(0.1*0:10), plot="FALSE")
LR_hist11_c_yes <- (LR_hist11_yes$counts)
RK_11_yes <- subset(a, a$kot_clc06 == 11)
RK_hist11_yes <- hist(RK_11_yes$RK_11_p, breaks= c(0.1*0:10), plot="FALSE&q...