Skip to content

Commit

Permalink
Merge pull request statsmodels#1072 from vincentarelbundock/notebook_fix
Browse files Browse the repository at this point in the history
notebook examples title cell
  • Loading branch information
Vincent Arel-Bundock committed Sep 11, 2013
2 parents d80d414 + 8a88f79 commit 7a00353
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
11 changes: 9 additions & 2 deletions examples/notebooks/example_quantreg.ipynb
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
{
"metadata": {
"name": "example_quantreg"
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Quantile regression"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Quantile regression\n",
"\n",
"This example page shows how to use ``statsmodels``' ``QuantReg`` class to replicate parts of the analysis published in \n",
"\n",
Expand Down
10 changes: 8 additions & 2 deletions examples/notebooks/example_regression_diagnostics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Regression diagnostics"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Regression diagnostics\n",
"\n",
"This example file shows how to use a few of the ``statsmodels`` regression diagnostic tests in a real-life context. You can learn about more tests and find out more information abou the tests here on the [Regression Diagnostics page.](http://statsmodels.sourceforge.net/stable/diagnostic.html) \n",
"\n",
"Note that most of the tests described here only return a tuple of numbers, without any annotation. A full description of outputs is always included in the docstring and in the online ``statsmodels`` documentation. For presentation purposes, we use the ``zip(name,test)`` construct to pretty-print short descriptions in the examples below."
Expand Down

0 comments on commit 7a00353

Please sign in to comment.