diff --git a/core/numpy/numpy-basics.ipynb b/core/numpy/numpy-basics.ipynb index 2713c3115..3281deb5b 100644 --- a/core/numpy/numpy-basics.ipynb +++ b/core/numpy/numpy-basics.ipynb @@ -14,13 +14,13 @@ "metadata": {}, "source": [ "## Overview\n", - "NumPy is the fundamental package for scientific computing with Python. It contains among other things:\n", + "Welcome to your first Python library - NumPy! NumPy is the fundamental package for numerical operations with Python. It contains among other things:\n", "\n", "- a powerful N-dimensional array object\n", "- sophisticated (broadcasting) functions\n", "- useful linear algebra, Fourier transform, and random number capabilities\n", "\n", - "The NumPy array object is the common interface for working with typed arrays of data across a wide-variety of scientific Python packages. NumPy also features a C-API, which enables interfacing existing Fortran/C/C++ libraries with Python and NumPy. In this notebook we will cover\n", + "Let's get you started with the basics! In this notebook we will cover\n", "\n", "1. Creating an `array`\n", "1. Math and calculations with arrays\n", @@ -1025,7 +1025,20 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.2" + "version": "3.7.15" + }, + "toc": { + "base_numbering": 1, + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "title_cell": "Table of Contents", + "title_sidebar": "Contents", + "toc_cell": false, + "toc_position": {}, + "toc_section_display": true, + "toc_window_display": false }, "toc-autonumbering": false }, diff --git a/core/overview.md b/core/overview.md index 27519db4a..c7b207b76 100644 --- a/core/overview.md +++ b/core/overview.md @@ -1,9 +1,6 @@ # Overview -A group of programs that works in tandem to produce a result or achieve a common goal is often referred to as a software stack. -This page gives an overview of the Python geoscience stack. -Scroll to the end of the page for cross-referenced tutorial material for several of the packages in the stack. -We suggest that new users start with the [Foundational Skills](../foundations/overview) section in order to get the most out of these tutorials. +As you might know by now that Python is a programming language. To make your job easier, developers of this programming language provide users like you with libraries (or packages). Core libraries will help you with fundamental numerical functions, and high-level libraries will help you efficiently analyze and visualize your data. Some of these libraries are used all across the Python community, while others are domain-specific. Read below to learn more about core and high-level libraries, and domain-specific libraries of the geoscience community. We suggest that new users start with the [Foundational Skills](../foundations/overview) section in order to get the most out of the tutorials below. ## Core libraries