Subversion Repositories bdplot

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 pdel 1
source(file="/home/philip/uni/R_functions/pb_plotting/pb_plotting.R")
2
prm <- pbp.getprm();
3
 
4
z <- seq(-5,5,.01)
5
f <- dnorm(z)
6
 
7
prm$filename="test.ps"
8
pbp.open(prm)
9
pbp.plot(z,f,prm=prm)
10
lines(z,f)
11
dev.off()