Dostosowywanie osi

Interaktywna wizualizacja danych z Bokeh

George Boorman

Core Curriculum Manager, DataCamp

Wykres liniowy

source = ColumnDataSource(data=apple)
fig = figure(x_axis_label="Date", y_axis_label="Market Cap ($)")
fig.line(x="date", y="market_cap", source=source)

output_file(filename="unformatted_plot.html") show(fig)

Niesformatowany wykres Apple

Interaktywna wizualizacja danych z Bokeh

Typ osi X

source = ColumnDataSource(data=apple)
fig = figure(x_axis_label="Date", y_axis_label="Market Cap ($)",

x_axis_type="datetime")
fig.line(x="date", y="market_cap", source=source) output_file(filename="unformatted_plot.html") show(fig)

Wykres z typem osi X

Interaktywna wizualizacja danych z Bokeh

Opcje formatowania

  • NumeralTickFormatter
  • Argument: format
Wartość format Wynik
1500.00 "$0.00" $1500.00
2000.00 "$0" $2000
5000.00 "$0,0" $5,000
1100000 "$0.0a" $1.1m
5000000000 "$0a $5b
  • DatetimeTickFormatter
  • Argument: months
Wartość months Wynik
"2018-03-01" "%B %Y" "March 2018"
"2019-10-15" "%b %Y" "Oct 2019"
"2020-02-09" "%b %y" "Feb 20"
  • Inne argumenty:
    • microseconds, milliseconds, seconds, minisec, minutes, hourmin, hours, days, years
Interaktywna wizualizacja danych z Bokeh

NumeralTickFormatter

from bokeh.models import NumeralTickFormatter

fig = figure(x_axis_label="Date", y_axis_label="Price ($)") fig.line(x="date", y="market_cap", source=source)
fig.yaxis[0].formatter = NumeralTickFormatter(format="$0.0a")
output_file(filename="formatted_y_axis.html") show(fig)

Sformatowana oś Y wykresu Apple

Interaktywna wizualizacja danych z Bokeh

DatetimeTickFormatter

from bokeh.models import NumeralTickFormatter, DatetimeTickFormatter

fig = figure(x_axis_label="Date", y_axis_label="Price ($)") fig.line(x="date", y="price", source=source) fig.yaxis[0].formatter = NumeralTickFormatter(format="$0.0a")
fig.xaxis[0].formatter = DatetimeTickFormatter(months="%b %Y")
output_file(filename="formatted_market_cap.html") show(fig)
Interaktywna wizualizacja danych z Bokeh

Gotowy wykres

Sformatowany wykres Apple

Interaktywna wizualizacja danych z Bokeh

Czas na ćwiczenia!

Interaktywna wizualizacja danych z Bokeh

Preparing Video For Download...