in src/guclimate/core/dataset.py [0:0]
def timeseries(self, variable: str) -> pandas.DataFrame:
dr = xr.DataArray(
self.ds[variable], coords=[self.ds.coords["time"]], dims=["time"]
)
return dr.to_dataframe()