GitHub

Original file line numberDiff line numberDiff line change

@@ -1,14 +1,16 @@

1-

# lecture-python-programming.myst

1+

# Python Programming for Economics and Finance

22
3-

Source files for https://python-programming.quantecon.org

3+

This website presents a set of lectures on Python programming for economics and finance.

44
5-

## GH-PAGES

5+

## Jupyter notebooks

66
7-

This repository is hosted on Github Pages:

7+

Jupyter notebook versions of each lecture are available for download

8+

via the website.

89
9-

https://quantecon.github.io/lecture-python-programming.myst/

10+

## Contributions

1011
11-

with a custom domain

12+

To comment on the lectures please add to or open an issue in the issue tracker (see above).

1213
13-

https://python-programming.quantecon.org

14+

We welcome pull requests!

1415
16+

Please read the [QuantEcon style guide](https://manual.quantecon.org/intro.html) first, so that you can match our style.

Original file line numberDiff line numberDiff line change

@@ -442,9 +442,6 @@ plt.rcParams['figure.figsize'] = (10, 6)

442442
443443

```

444444
445-

Here are [more examples](https://www.datafantic.com/the-magic-of-matplotlib-stylesheets/) on how to change these parameters.

446-
447-
448445

## Further Reading

449446
450447

* The [Matplotlib gallery](http://matplotlib.org/gallery.html) provides many examples.

Original file line numberDiff line numberDiff line change

@@ -314,7 +314,7 @@ Simplifying the expression above gives

314314

simplify(Dt.doit())

315315

```

316316
317-

This is consistent with the solution in the lecture on [geometric series](https://python.quantecon.org/geom_series.html#example-the-money-multiplier-in-fractional-reserve-banking).

317+

This is consistent with the solution in the lecture on [geometric series](https://intro.quantecon.org/geom_series.html#example-the-money-multiplier-in-fractional-reserve-banking).

318318
319319
320320

#### Example: discrete random variable

Original file line numberDiff line numberDiff line change

@@ -206,8 +206,6 @@ You can also run the script line by line by opening an ipykernel console either

206206

- by right clicking within the Notebook and selecting Create Console for Editor

207207
208208

Use Shift + Enter to run a line of code.

209-
210-

More on ipykernel consoles [here](https://ipython.readthedocs.io/en/stable/interactive/reference.html#ipykernel).

211209

```

212210
213211

## A walk through Visual Studio Code

Read the original on github.com ↗