Ookla’s Number of Speedtest Intelligence Users

Ookla’s Number of Speedtest Intelligence Users#

Ookla Speedtests are a way for users to find out the download speed, upload speed and latency of their internet connection. This is a dataset of the number of users who took the speedtest. To account for change, we take the baseline number of users from November 2022 and show the percent change in daily users and change in weekly users.

Hide code cell source
output_notebook()

tabs = []

for adm in affected_adm1:
    df = ooklaUsersChange[ooklaUsersChange['adm1_en']==adm] 

    tabs.append(
        TabPanel(
        child=get_line_plot(df, f"Number of daily users taking speedtest", "Source: Ookla Data for Good", earthquakes=True, subtitle = '% change compared to a 3 month prior baseline'),
                    title=adm.capitalize(),
                )
                )

tabs = Tabs(tabs=tabs, sizing_mode="scale_both")
show(tabs, warn_on_missing_glyphs=False)
Loading BokehJS ...
Hide code cell source
output_notebook()


tabs = []

for adm in affected_adm1:
    df = week[week['adm1_en']==adm] 

    tabs.append(
        TabPanel(
        child=get_line_plot(df, f"Weekly average users taking speedtest", "Source: Ookla Data for Good", earthquakes=True, subtitle = '% change compared to a 3 month prior baseline'),
                    title=adm.capitalize(),
                )
                )

tabs = Tabs(tabs=tabs, sizing_mode="scale_both")
show(tabs, warn_on_missing_glyphs=False)
Loading BokehJS ...