We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c857cf commit c688982Copy full SHA for c688982
Examples.ipynb
@@ -474,9 +474,9 @@
474
"%%altair\n",
475
"data = altair.X(\"cty\", bin=altair.Bin(step=2))\n",
476
"(\n",
477
- " altair \\\n",
478
- " .Chart(mpg) \\\n",
479
- " .mark_bar() \\\n",
+ " altair\n",
+ " .Chart(mpg)\n",
+ " .mark_bar()\n",
480
" .encode(data, y=\"count()\")\n",
481
")"
482
]
@@ -1161,13 +1161,13 @@
1161
"outputs": [],
1162
"source": [
1163
"%%altair \n",
1164
- "(altair \\\n",
1165
1166
- " .mark_circle() \\\n",
1167
- " .encode(x=\"displ\", y=\"hwy\",) \\\n",
+ "(altair\n",
+ " .mark_circle()\n",
+ " .encode(x=\"displ\", y=\"hwy\",)\n",
1168
" .properties(\n",
1169
" width=100, height=150\n",
1170
- " ) \\\n",
+ " )\n",
1171
" .facet(column=\"cyl\", row=\"drv\")\n",
1172
1173
0 commit comments