For constructing DataFrames, we have `DataFrame.from_dict` How about constructing a Column? Example of where this would be needed: https://github.com/mwaskom/seaborn/blob/5d9f37159bbd3ac44c8c8a06825583ba25648525/seaborn/_oldcore.py#L1217-L1220 ```python for var in axis_variables: other_var = {"x": "y", "y": "x"}[var] converter = pd.Series(index=self.plot_data.index, name=var, dtype=object) ```