My Document


  All the following documents are private; You can't login to access those document.

1. UH login:
Document Serverh ttps://uhdspace.uhasselt.be/dspace/ldap-login
Research activity: https://uhintra1.uhasselt.be/wetdos/default.aspx

2. Working groups:
https://bitbucket.org/??helsens/relims-stats/

3. R quick reference list


# To export and import data
To.export= write.table(data, file = "C:.....\\data1.csv", append = FALSE, quote = FALSE,sep = ", ", eol = "\r", na = ".", dec = ".", row.names = TRUE, col.names = TRUE)
 To.import <- read.csv("C:\\ .....\\dardAA.csv", header=TRUE, sep=",", na.strings="NA", dec=".", strip.white=TRUE)

# Plotting
plot(quntiles,run1,xlab="Quantiles ",ylab="Coefficent of variations",main=" ", type='n',lty=3,ylim=c(0,4), xlim=range(0,0.2,by=0.1),axes=FALSE)
points(quntiles,run1,pch=20,col=1,lwd=1);lines(quntiles,run1,col=1, lty=1)
points(quntiles,run2,pch=20,col=2,lwd=1);lines(quntiles,run2,col=2, lty=1)
points(quntiles,run3,pch=20,col=3,lwd=1);lines(quntiles,run3,col=3, lty=1)
legend('topright',col=c(1,2,3),lty=c(1,1),legend = c("run 1", "Run 2","Run 3"));
box(); axis(1,c(0:0.1))
axis(2,c(0.0,0.25,0.5,0.75,1.0))

No comments:

Post a Comment