Extracting R-hat values from an Stan object

Is there any other way for checking the R-hat values than print(fit) and using the shiny app? I have a lot of parameters and I want to check only a selection of them without printing all.

You can specify which parameters to print:
print(fit, pars=c("alpha","beta","mu"))

1 Like