I have the following dataset:
I want to do the following:
dataset = pd.read_excel(datasets_dir + '\\' + dataset_filename,na_values="NULL")
if dataset['ExpectedWeight'][0][0] == 630:
return True # This should work.
Is this possible?
I have the following dataset:
I want to do the following:
dataset = pd.read_excel(datasets_dir + '\\' + dataset_filename,na_values="NULL")
if dataset['ExpectedWeight'][0][0] == 630:
return True # This should work.
Is this possible?
Not sure if this is what you are asking for, but if you manually set your columns by the tag headers
and started reading in the data form the second line, with the tag skiprows
being 1, you could split the data into column names you need or just index them.