Hi!
I am following the tutorial in this link to download some data from Advan: GitHub - Dewey-Data/deweydatapy: Dewey Data Inc. Python API
Is there a way to select which variables I want, either by name or index, instead of downloading it all? There is a size issue as some of the columns have long floating points, and I don’t need those.
I was thinking something like this (as an example of what I am looking for, although this doesn’t actually work):
files_df = ddp.get_file_list(apikey_, pp_advan_wp,
start_date = ‘2023-09-03’,
end_date = ‘2023-12-31’,
vars = [1:12, 14], # select certain variables
print_info = True);
Thanks!