I am very new to coding and I'm trying to view data from FastF1. I am attempting to do this using Python and Jupyter Lab. Whenever I print two columns using the code below:
import fastf1
from fastf1 import plotting
import pandas as pd
plotting.setup_mpl()
pd.set_option('display.max_rows', None)
pd.set_option('display.max_columns', None)
pd.set_option('display.width', None)
fp3 = fastf1.get_session(2022,'Monza','FP3')fp3.load()
fp3_laps = fp3.laps
fp3_d1 = fp3_laps.loc[fp3_laps['Driver']=='VER']
print([[fp3_d1.LapTime, fp3_d1.LapNumber]])
My aim would be to get have both the LapTime and LapNumber columns next to each other.
