library(stannis)
tag = "00000000-0000-0000-0000-000000000000"
timing_stannis <- vector(mode = 'numeric', length = 100)
timing_rstan <- vector(mode = 'numeric', length = 100)
for (i in 1:100) {
timing_stannis[i] = system.time({
o = stannis::rewrite_stan_csv(source = 'output.csv', root = 'binary', tag = tag, comment = "Krump")
P = stannis::get_parameter('binary', 'P')
})[3]
timing_rstan[i] = system.time({
m = rstan::read_stan_csv("output.csv")
P_ = rstan::extract(m, pars = c("P"), permuted=FALSE)
})[3]
}
max_err = max(P[1001:1300,] - P_[,1,])
run = stannis::read_run('.', uuid = NULL)
library(stannis)
P = stannis::get_parameter('./sample', 'P')
P_ = stannis::get_parameter('./sample', 'P', mmap=TRUE)
str(P)
str(P_)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.