Skip to content

Commit 1db32aa

Browse files
committed
Merge branch 'maint-18octb' of https://github.com/QuantEcon/lecture-python-programming.myst into maint-18octb
2 parents da5a2be + f788ed9 commit 1db32aa

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

.github/workflows/cache.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@ jobs:
3131
uses: actions/upload-artifact@v4
3232
with:
3333
name: build-cache
34-
path: _build
34+
path: _build
35+
include-hidden-files: true

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ channels:
33
- default
44
dependencies:
55
- python=3.12
6-
- anaconda=2024.06
6+
- anaconda=2024.10
77
- pip
88
- pip:
99
- jupyter-book==1.0.3

lectures/_config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ sphinx:
2323
'https://ieeexplore.ieee.org/document/8757088',
2424
'https://www.sciencedirect.com/science/article/pii/S1477388021000177',
2525
'https://keras.io/',
26-
'https://data.oecd.org/']
26+
'https://data.oecd.org/',
27+
'https://www.reddit.com/',
28+
'https://openai.com']
2729
html_favicon: _static/lectures-favicon.ico
2830
html_theme: quantecon_book_theme
2931
html_static_path: ['_static']

lectures/pandas.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -509,11 +509,7 @@ For example, suppose that we are interested in the [unemployment rate](https://r
509509
Via FRED, the entire series for the US civilian unemployment rate can be downloaded directly by entering
510510
this URL into your browser (note that this requires an internet connection)
511511

512-
```{code-block} none
513-
https://research.stlouisfed.org/fred2/series/UNRATE/downloaddata/UNRATE.csv
514-
```
515-
516-
(Equivalently, click here: [https://research.stlouisfed.org/fred2/series/UNRATE/downloaddata/UNRATE.csv](https://research.stlouisfed.org/fred2/series/UNRATE/downloaddata/UNRATE.csv))
512+
(To download the data as a csv, click here: [https://research.stlouisfed.org/fred2/series/UNRATE/downloaddata/UNRATE.csv](https://fred.stlouisfed.org/graph/fredgraph.csv?bgcolor=%23e1e9f0&chart_type=line&drp=0&fo=open%20sans&graph_bgcolor=%23ffffff&height=450&mode=fred&recession_bars=on&txtcolor=%23444444&ts=12&tts=12&width=1320&nt=0&thu=0&trc=0&show_legend=yes&show_axis_titles=yes&show_tooltip=yes&id=UNRATE&scale=left&cosd=1948-01-01&coed=2024-10-01&line_color=%234572a7&link_values=false&line_style=solid&mark_type=none&mw=3&lw=3&ost=-99999&oet=99999&mma=0&fml=a&fq=Monthly&fam=avg&fgst=lin&fgsnd=2020-02-01&line_index=1&transformation=lin&vintage_date=2024-11-03&revision_date=2024-11-03&nd=1948-01-01))
517513

518514
This request returns a CSV file, which will be handled by your default application for this class of files.
519515

lectures/workspace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ This lecture takes you through the workings of two development environments.
121121

122122
JupyterLab is a browser based development environment for Jupyter Notebooks, code scripts, and data files.
123123

124-
You can [try JupyterLab in the browser](https://jupyter.org/try#jupyterlab) if you want to test it out before installing it locally.
124+
You can [try JupyterLab in the browser](https://jupyter.org/try-jupyter/lab/) if you want to test it out before installing it locally.
125125

126126
You can install JupyterLab using pip
127127

0 commit comments

Comments
 (0)