You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix broken links and redirects in documentation with API endpoint correction (#404)
* Initial plan
* Fix broken Thomas Sargent link and update redirect URLs
Co-authored-by: mmcky <8263752+mmcky@users.noreply.github.com>
* Update Thomas Sargent URL to use http:// instead of removing it
Co-authored-by: mmcky <8263752+mmcky@users.noreply.github.com>
* Revert FRED URL in requests.get() call to fix broken Python code execution
Co-authored-by: mmcky <8263752+mmcky@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: mmcky <8263752+mmcky@users.noreply.github.com>
Copy file name to clipboardExpand all lines: lectures/pandas.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ Here's a popularity comparison over time against Matlab and STATA courtesy of St
47
47
:scale: 100
48
48
```
49
49
50
-
Just as [NumPy](https://www.numpy.org/) provides the basic array data type plus core array operations, pandas
50
+
Just as [NumPy](https://numpy.org/) provides the basic array data type plus core array operations, pandas
51
51
52
52
1. defines fundamental structures for working with data and
53
53
1. endows them with methods that facilitate operations such as
@@ -499,9 +499,9 @@ plt.show()
499
499
500
500
Python makes it straightforward to query online databases programmatically.
501
501
502
-
An important database for economists is [FRED](https://research.stlouisfed.org/fred2/) --- a vast collection of time series data maintained by the St. Louis Fed.
502
+
An important database for economists is [FRED](https://fred.stlouisfed.org/) --- a vast collection of time series data maintained by the St. Louis Fed.
503
503
504
-
For example, suppose that we are interested in the [unemployment rate](https://research.stlouisfed.org/fred2/series/UNRATE).
504
+
For example, suppose that we are interested in the [unemployment rate](https://fred.stlouisfed.org/series/UNRATE).
505
505
506
506
(To download the data as a csv, click on the top right `Download` and select the `CSV (data)` option).
0 commit comments