Skip to content

Multiple series for FRED data #3413

@jseabold

Description

@jseabold

I haven't looked under the hood yet, but it doesn't look like you can grab multiple series from FRED data at the moment. This works

from pandas.io.data import DataReader

merge = lambda x,y : x.merge(y, left_index=True, right_index=True)
dta = reduce(merge, [DataReader(i, "fred") for i in ["AKUR", "ALUR","GAUR"]])

but this just hangs and then returns an empty DataFrame

dta = DataReader(["AKUR", "ALUR","GAUR"], "fred")

Metadata

Metadata

Assignees

No one assigned

    Labels

    IO DataIO issues that don't fit into a more specific label

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions