Skip to content

Commit e563fa3

Browse files
committed
update package list
1 parent 78cc9fe commit e563fa3

1 file changed

Lines changed: 9 additions & 21 deletions

File tree

lectures/about_py.md

Lines changed: 9 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Python has experienced rapid adoption in the last decade and is now one of the m
6666
* [manufacturing resource planning](https://ieeexplore.ieee.org/abstract/document/8667819)
6767
* multimedia, data processing, security, etc., etc., etc.
6868

69-
Used and supported extensively by Internet services and high tech companies including
69+
Used and supported extensively by Internet services and high-tech companies including
7070

7171
* [Google](https://www.google.com/)
7272
* [Netflix](https://www.netflix.com/)
@@ -308,7 +308,7 @@ We can easily create tables of derivatives, generate LaTeX output, add that outp
308308
### Statistics
309309

310310
Python's data manipulation and statistics libraries have improved rapidly over
311-
the last few years, which supports to tackle
311+
the last few years to tackle
312312
[specific problems in data science](https://ieeexplore.ieee.org/document/8757088).
313313

314314
#### Pandas
@@ -385,7 +385,7 @@ Its features include, among many other things:
385385
* standard graph algorithms for analyzing networks
386386
* plotting routines
387387

388-
Here's some example code that generates and plots a random graph, with node color determined by shortest path length from a central node.
388+
Here's some example code that generates and plots a random graph, with node color determined by the shortest path length from a central node.
389389

390390
```{code-cell} ipython
391391
%matplotlib inline
@@ -426,10 +426,10 @@ Running your Python code on massive servers in the cloud is becoming easier and
426426

427427
```{index} single: cloud computing; google colab
428428
```
429-
An excellent example for the portability of python in a cloud computing environment is The [Google Colab](https://colab.research.google.com/). It hosts Jupyter notebook service online with no preconfigurations to run Python code using cloud servers.
429+
An excellent example of the portability of python in a cloud computing environment is The [Google Colab](https://colab.research.google.com/). It hosts the Jupyter notebook on cloud servers with no pre-configuration necessary to run Python code using cloud servers.
430430

431431

432-
There are also commercial application of cloud computing:
432+
There are also commercial applications of cloud computing:
433433

434434
```{index} single: cloud computing; anaconda enterprise
435435
```
@@ -445,18 +445,13 @@ See also
445445
```{index} single: cloud computing; Google Cloud
446446
```
447447

448-
* [Google Cloud] The [Google App Engine](https://cloud.google.com/appengine/) (PaaS) and the [Google Compute Engine](https://cloud.google.com/compute/) (IaaS)
448+
* The [Google App Engine](https://cloud.google.com/appengine/) (PaaS) and the [Google Compute Engine](https://cloud.google.com/compute/) (IaaS)
449449

450450
```{index} single: cloud computing; digital ocean
451451
```
452452

453453
* [Digital Ocean](https://www.digitalocean.com/)
454454

455-
```{index} single: cloud computing; pythonanywhere
456-
```
457-
458-
* [Pythonanywhere](https://www.pythonanywhere.com/)
459-
460455

461456
### Parallel Processing
462457

@@ -476,13 +471,6 @@ Apart from the cloud computing options listed above, you might like to consider
476471

477472
* The [Dask](https://www.dask.org/) parallelises PyData and Machine Learning in Python.
478473

479-
480-
```{index} single: parallel computing; starcluster
481-
```
482-
483-
* The [Starcluster](http://star.mit.edu/cluster/) interface to Amazon's EC2.
484-
485-
486474
```{index} single: parallel computing; pycuda
487475
```
488476

@@ -506,12 +494,12 @@ Some representative examples include
506494
```{index} single: scientific programming; Numba
507495
```
508496

509-
* [Numba](http://numba.pydata.org/) --- Make Python run at the same speed as native machine code!
497+
* [Numba](http://numba.pydata.org/) --- make Python run at the same speed as native machine code!
510498

511-
```{index} single: scientific programming; Blaze
499+
```{index} single: scientific programming; scikit-image
512500
```
513501

514-
* [Blaze](http://blaze.pydata.org/) --- a generalization of NumPy.
502+
* [scikit-image](https://scikit-image.org/) --- handles image data for computer vision
515503

516504
```{index} single: scientific programming; PyTables
517505
```

0 commit comments

Comments
 (0)