Closed Rsugihara01 closed 3 years ago
Hello @Rsugihara01,
Sorry for getting back to you only now.
The following code should do what you want:
These are the last two plots:
Does this answer your question?
Kind regards, Robrecht
Thank you for your answer, @rcannood
The code worked and gave me back two trajectory exactly the way I wanted. I really appreciate your help.
Kind regards, RSugihara01
I've summarised this information in a vignette which will be included in viash as of the next release.
Feel free to let me know if you have any further questions.
Kind regards, Robrecht
Hello, I read your paper in biorxiv and I found that dyngen can simulate datasets for evaluating trajectory alignment as in Figure 6. I got interested in trying that, but I might have overlooked, I couldn't find how to make two datasets for trajectory alignment.
I tried to make these datasets by doing something like this below. I made one config from initialise_model() and apply generate_dataset() twice from same config.
set.seed(1) config <- initialise_model( ) data1 <- generate_dataset( config ) data2<- generate_dataset( config )
I could make two datasets, but I wasn't sure this is ok because this is using same set.seed(). Is this ok? or the paper did it differently?
Thank you,