Dear all,

In the end I try to run a system dynamics simulation in R using the package 
deSolve.
Therefore I need an auxiliary list (auxs) the model can refer to when it the 
functions need an auxiliary value.

I used a manual list:

auxs <- c( aSplitSN=0.4 , aSplitLN=0.6, aSplitSR1=0 , aSplitLR1=1, aSplitSR2=0 
, aSplitLR2=1, aSplitSR3=0 , aSplitLR3=1, aSalesNR=0.92, aSalesRR=0.08, […])

this way everything worked well.

Now I want to use a matrix with different values for each of the auxiliaries in 
order to run different scenarios. Therefore I created a csv document wich I 
read in:

csv1  <- read.csv("180713_Taguchi Robust Design Test_180709_1745.csv", sep = 
";")

list_csv <- csv1[1,]

namesauxs <- names(list_csv)

 auxs1 <- as.numeric(list_csv)

 names(auxs1) <- namesauxs

 auxs <- auxs1


Looking at the global environment section in R studio, now both are the same, 
in the value section as "Numed num"

Yet, the model will not run using these values ultimately coming from the csv.

What am I doing wrong here?

It would be great if you could help.

Thanks a lot in advance

Yours

Jan





        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to