Can you reference parameters in a list by their in...
# beginners-need-help
s
Can you reference parameters in a list by their index? For example if I had a file
parameters.yml
with the following contents:
Copy code
yaml
folds:
  timeseries1:
    - start: 2021-08-24 15:00:00+00:00
      end: 2021-10-22 03:05:00+00:00
    - start: 2021-10-22 03:10:00+00:00
      end: 2021-12-28 05:00:00+00:00     
    - start: 2021-12-28 05:05:00+00:00
      end: 2022-01-28 12:00:00+00:00
Can I reference the second [start, end]? I've tried using something like
params:folds.timeseries1.1
or
params:folds.timeseries1[1]
, but that doesn't work.
4 Views