Skip to content

Commit

Permalink
Merge pull request #118 from AustinRochford/fix-intro-notebook
Browse files Browse the repository at this point in the history
load_trace and save_trace are under az.utils
  • Loading branch information
ColCarroll committed Jul 8, 2018
2 parents 6b6d756 + 092ceca commit 3dfc2ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/notebooks/Introduction.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"source": [
"Most or ArviZ functions require a `trace` as the main argument. Currently ArviZ will work with either a PyMC3 `trace` or a Pandas DataFrame. Internally ArviZ turns the former into the latter. To show some of the functionality or ArviZ we are going to load a previously saved trace. Arviz can save traces as (optionally compressed) csv files.\n",
"\n",
" az.save_trace(trace)"
" az.utils.save_trace(trace)"
]
},
{
Expand Down Expand Up @@ -134,7 +134,7 @@
}
],
"source": [
"trace = az.load_trace('trace.gzip')\n",
"trace = az.utils.load_trace('trace.gzip')\n",
"trace.head()"
]
},
Expand Down Expand Up @@ -226,7 +226,7 @@
}
],
"source": [
"az.load_trace('trace.gzip', combined=True).head()"
"az.utils.load_trace('trace.gzip', combined=True).head()"
]
},
{
Expand Down

0 comments on commit 3dfc2ff

Please sign in to comment.