Skip to content

Commit 57ef29c

Browse files
committed
Merge branch 'v0.3'
2 parents 1108778 + c44b066 commit 57ef29c

File tree

3 files changed

+109
-56
lines changed

3 files changed

+109
-56
lines changed

doc/tutorial/axis_grids.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"cell_type": "code",
5454
"collapsed": false,
5555
"input": [
56-
"sns.set(style=\"nogrid\")\n",
56+
"sns.set(style=\"white\")\n",
5757
"np.random.seed(sum(map(ord, \"axis_grids\")))"
5858
],
5959
"language": "python",
@@ -79,7 +79,7 @@
7979
"cell_type": "code",
8080
"collapsed": false,
8181
"input": [
82-
"tips = pd.read_csv(\"https://raw2.github.com/mwaskom/seaborn-data/master/tips.csv\")"
82+
"tips = sns.load_dataset(\"tips\")"
8383
],
8484
"language": "python",
8585
"metadata": {},
@@ -229,7 +229,7 @@
229229
"cell_type": "code",
230230
"collapsed": false,
231231
"input": [
232-
"attend = pd.read_csv(\"https://raw2.github.com/mwaskom/seaborn-data/master/attention.csv\").query(\"subject <= 12\")\n",
232+
"attend = sns.load_dataset(\"attention\").query(\"subject <= 12\")\n",
233233
"g = sns.FacetGrid(attend, col=\"subject\", col_wrap=4, size=2, ylim=(0, 10))\n",
234234
"g.map(sns.pointplot, \"solutions\", \"score\", color=\".3\", ci=None);"
235235
],

doc/tutorial/categorical_linear_models.ipynb

+6-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
],
3737
"language": "python",
3838
"metadata": {},
39-
"outputs": []
39+
"outputs": [],
40+
"prompt_number": null
4041
},
4142
{
4243
"cell_type": "code",
@@ -47,7 +48,8 @@
4748
],
4849
"language": "python",
4950
"metadata": {},
50-
"outputs": []
51+
"outputs": [],
52+
"prompt_number": null
5153
},
5254
{
5355
"cell_type": "code",
@@ -59,7 +61,8 @@
5961
],
6062
"language": "python",
6163
"metadata": {},
62-
"outputs": []
64+
"outputs": [],
65+
"prompt_number": null
6366
},
6467
{
6568
"cell_type": "raw",

0 commit comments

Comments
 (0)