I saw this code on the data page for the Civilian Unemployment Rate provided by Quandl:
pipe.add(fred_unrate.value.latest, 'fred_unrate')
This is giving the following error:
UnsupportedPipelineOutput: Cannot add column 'fred_unrate' with term Latest((fred_unrate.value::float64,), window_length=1). Adding slices or single-column-output terms as pipeline columns is not currently supported.
Does anyone know how to use the fred_unrate data source, to get the latest unemployment rate values?
Thank you!