From 6e2842ac6801600f1df661790641e53bf21965c8 Mon Sep 17 00:00:00 2001 From: Max Joseph Date: Fri, 7 Apr 2023 14:07:47 -0600 Subject: [PATCH] Fix name of arviz traceplot function --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 55a60b3df..ced23bc11 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ fitted = model.fit() In the first line we create and build a Bambi `Model`. The second line tells the sampler to start running and it returns an `InferenceData` object, which can be passed to several ArviZ functions such as `az.summary()` to get a summary of the parameters distribution and sample diagnostics or - `az.plot_traces()` to visualize them. + `az.plot_trace()` to visualize them. ### Logistic regression