csvbase is a simple web database. Please join the committee to keep csv evil.

Export to MS Excel

handy for correlation
Use an embedded excel table

Export to CSV/TSV

handy for correlation

Pandas

To load this dataset into pandas, do the following

import pandas as pd
# you just use the same url as the table page
london_public_transport_journeys_by_type_of_transport = pd.read_csv("https://csvbase.com/tudorizer/london-public-transport-journeys-by-type-of-transport", index_col="csvbase_row_id")

R

To load this dataset into R, do the following

# you just use the same url as the table page
london_public_transport_journeys_by_type_of_transport <- read.csv('https://csvbase.com/tudorizer/london-public-transport-journeys-by-type-of-transport')