EngComp1_offtheground
EngComp1_offtheground copied to clipboard
Learn to interact with Python and handle data with Python. Join the online course!
When pinning versions of the packages like you do in `requirements.txt` it makes sense to also pin the version of Python. This is more an investment in the future, for...
In "type of variables" section introduce how to convert and `int` or a "string number" to a `float` by using `float()`
Updated pull request with reviewed translation for the first 2 notebooks and automated translation for the other notebooks.
We are using `numpy.polyfit()`, which is now described as "part of the old polynomial API"—NumPy 1.4 introduced the [`numpy.polynomial`](https://numpy.org/doc/stable/reference/routines.polynomials.package.html#module-numpy.polynomial) package, and the old `numpy.poly1d` class is considered legacy. According to...