Displaying 1 result from an estimated 1 matches for "kot_clc06".
2012 Sep 14
1
swap hist() colours
...for all graph that i will
produce (f.e. for different number of columns). some sugggestions?
thanks in advance.
here is an example:
##############################
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 &...