We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0972894 commit 5856ea6Copy full SHA for 5856ea6
pandas_datareader/fred.py
@@ -21,7 +21,7 @@ def read(self):
21
-------
22
data : DataFrame
23
If multiple names are passed for "series" then the index of the
24
- DataFrame is the outer join of the indicies of each series.
+ DataFrame is the outer join of the indices of each series.
25
"""
26
try:
27
return self._read()
@@ -37,7 +37,7 @@ def _read(self):
37
urls = [f"{self.url}?id={n}" for n in names]
38
39
def fetch_data(url, name):
40
- """Utillity to fetch data"""
+ """Utility to fetch data"""
41
resp = self._read_url_as_StringIO(url)
42
data = read_csv(
43
resp,
0 commit comments