1 | PSFSummary(outfile="example-res.csv",infile="example.csv",Pft=c(1e-4,1e-6),Cvmu=c(0.1,0.2),Cvcov=c(0.5,0.8),Di=2400,tr=13)
|
x |
1 2 3 4 5 6 7 8 9 10 11 12 13 | library(PSFCalc)
library(LimitState)
Di=2400; tr=13
#########################################
###You can modify if necessary
Pft <- c(1e-4,1e-6)
Cvmu <- c(0.1,0.2)
Cvcov <- c(0.5,0.8)
#########################################
outfile <-paste("Di",as.character(Di),"tr",as.character(tr),"-res.csv",sep="")
infile <- system.file("example.csv",package="PSFCalc")
aa <- read.csv(infile)
PSFSummary(outfile=outfile,indata=aa,Pft=Pft,Cvmu=Cvmu,Cvcov=Cvcov,Di=Di,tr=tr)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.