Skip to content

Commit dabbcd4

Browse files
authored
Fix links to docs (#33)
1 parent 8caa73e commit dabbcd4

File tree

5 files changed

+18
-10
lines changed

5 files changed

+18
-10
lines changed

notebooks/01_introduction.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"to write any JavaScript yourself**.\n",
3939
"\n",
4040
"Bokeh can generate\n",
41-
"[stand-alone HTML objects](http://docs.bokeh.org/en/latest/docs/user_guide/embed.html)\n",
41+
"[stand-alone HTML objects](https://docs.bokeh.org/en/latest/docs/user_guide/output/embed.html)\n",
4242
"to use in any kind of website, or you can run Bokeh as a\n",
4343
"[server](http://docs.bokeh.org/en/latest/docs/user_guide/server.html).\n",
4444
"But Bokeh also works directly in Jupyter Notebooks.\n",
@@ -96,7 +96,7 @@
9696
"### What's in this tutorial?\n",
9797
"\n",
9898
"This tutorial is an **interactive way to learn the basics of Bokeh**. This tutorial uses\n",
99-
"[Bokeh's tight integration](http://docs.bokeh.org/en/latest/docs/user_guide/jupyter.html)\n",
99+
"[Bokeh's tight integration](https://docs.bokeh.org/en/latest/docs/user_guide/output/jupyter.html)\n",
100100
"with Jupyter notebooks.\n",
101101
"\n",
102102
"In the course of this tutorial, you will learn everything you need to know about Bokeh\n",

notebooks/02_installation_and_setup.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
"To enable Bokeh outputs in JupyterLab, you need to install the\n",
109109
"[jupyter_bokeh extension](https://github.com/bokeh/jupyter_bokeh).\n",
110110
"\n",
111-
"See [Using with Jupyter](https://docs.bokeh.org/en/latest/docs/user_guide/jupyter.html) for more details."
111+
"See [Using with Jupyter](https://docs.bokeh.org/en/latest/docs/user_guide/output/jupyter.html) for more details."
112112
]
113113
},
114114
{

notebooks/04_basic_plots.ipynb

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -461,9 +461,17 @@
461461
"metadata": {},
462462
"source": [
463463
"Use `figure()` with the `height`, `width`, and `title` parameters to create a new\n",
464-
"plot. Next, load the data from the `monthly_values_df` data frame. Use this data\n",
465-
"to add a line glyph to the plot, using `line()` with some of the parameters you\n",
466-
"saw above. Finally, use `show()` to display the plot:"
464+
"plot. This figure uses the first ten carrier names for its `x_range`, defining\n",
465+
"the 10 categories for this plot.\n",
466+
"\n",
467+
"Next, use the `vbar` method to add the bars:\n",
468+
"- The `x` argument maps data from\n",
469+
"the `airlines_by_passengers_df` to the categories defined with\n",
470+
"`x_range` above. \n",
471+
"- The `top` argument uses the number of passengers from the\n",
472+
"dataframe to define the height of each bar.\n",
473+
"\n",
474+
"Finally, use `show()` to display the plot:"
467475
]
468476
},
469477
{

notebooks/05_styling.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@
318318
"cell_type": "markdown",
319319
"metadata": {},
320320
"source": [
321-
"For more information, see [Styling glyphs](https://docs.bokeh.org/en/latest/docs/user_guide/styling/plots.html#styling-axes)\n",
321+
"For more information, see [Styling glyphs](https://docs.bokeh.org/en/latest/docs/user_guide/styling/plots.html#styling-glyphs)\n",
322322
"in the user guide."
323323
]
324324
},
@@ -374,7 +374,7 @@
374374
"number format. Bokeh uses different formatters for different data types. For example,\n",
375375
"the `NumeralTickFormatter` is used for numeric data. It allows you to switch between\n",
376376
"scientific and decimal notation and to define the number of decimal places, for\n",
377-
"example. See [Tick formatters](https://docs.bokeh.org/en/latest/docs/user_guide/styling.html#tick-formatters)\n",
377+
"example. See [Tick label formats](https://docs.bokeh.org/en/latest/docs/user_guide/styling/plots.html#tick-label-formats)\n",
378378
"for more examples.\n",
379379
"\n",
380380
"Revisiting the example from the previous chapter, you can see both those options in\n",
@@ -414,7 +414,7 @@
414414
"cell_type": "markdown",
415415
"metadata": {},
416416
"source": [
417-
"See [Styling axes](https://docs.bokeh.org/en/latest/docs/user_guide/styling/axes.html#ug-styling-axes)\n",
417+
"See [Styling axes](https://docs.bokeh.org/en/latest/docs/user_guide/styling/plots.html#styling-axes)\n",
418418
"in the user guide for more comprehensive information."
419419
]
420420
},

notebooks/08_plot_tools.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@
540540
"\n",
541541
"Not all Bokeh glyphs have WebGL support yet, but we are adding more all the time. If you have chosen to use WebGL then Bokeh will use WebGL for the glyphs that it can, and drop back to using Canvas for those not yet supported.\n",
542542
"\n",
543-
"For a full list of glyphs supported using WebGL see the [latest Bokeh documentation](https://docs.bokeh.org/en/latest/docs/user_guide/output/webgl.html#supported-glyphs)"
543+
"For a full list of glyphs supported using WebGL see the [list of supported glyphs in the Bokeh documentation](https://docs.bokeh.org/en/latest/docs/user_guide/output/webgl.html#supported-glyphs)."
544544
]
545545
},
546546
{

0 commit comments

Comments
 (0)