Ok so I have a dataset/frame with pandas and I want to select one row per minute to get a more accurate view of the simulation. As the times in the dataframe are too close together.
req_columns = [4,5,6, 9]
df = pd.read_excel('Flt0052UV.xlsx', skiprows = range(1,33656), usecols= req_columns)
df = df[~df.Longitude.isnull()]
here is how I currently select the data any help would be greatly appreciated.
