Displaying 1 result from an estimated 1 matches for "xnews2".
Did you mean:
xnews1
2012 Jan 19
0
Global sensitivity indices using sensitivity package: sobol, sobol2002
...;- rtri(n,min=0.0001,max=0.01,ml=0.001)
phi <- rtri(n,min=0.000006,max=0.05,ml=0.00004)
v<- rtri(n,min=0.3,max=0.8,ml=0.5)
rho <- rtri(n,min=0.1,max=0.9,ml=0.5)
delta <- rtri(n,min=0.01,max=0.65,ml=0.2)
alpha<- rtri(n,min=0.0001,max=0.1,ml=0.005)
e<- rtri(n,min=0.4,max=1.3,ml=0.9)
xnews2<-data.frame(lambda, a,b, phi, v, rho, delta, alpha,
e,So=4250,Io=250,Ro=0,No=4500)
###sibol2002
finsibcom <- sobol2002(model = simfunzcom, X1 = xnews1, X2 = xnews2, nboot =
100)
####decoupled approach
sa <- sobol(model = simfunzcom, X1 = xnews11, X2 = xnews2,nboot = 100)
xnews3<-dat...