Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emmanuel10701/numpy
Numpy
https://github.com/emmanuel10701/numpy
jupyter-notebook machine-learning numpy pandas python
Last synced: 1 day ago
JSON representation
Numpy
- Host: GitHub
- URL: https://github.com/emmanuel10701/numpy
- Owner: Emmanuel10701
- Created: 2025-01-12T15:53:06.000Z (21 days ago)
- Default Branch: main
- Last Pushed: 2025-01-28T10:52:54.000Z (5 days ago)
- Last Synced: 2025-01-28T11:35:32.846Z (5 days ago)
- Topics: jupyter-notebook, machine-learning, numpy, pandas, python
- Language: Jupyter Notebook
- Homepage:
- Size: 5.86 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NumPy CRUD Operations Walkthrough
This README focuses on demonstrating **CRUD (Create, Read, Update, Delete)** operations in **NumPy** arrays through a Jupyter Notebook. The notebook showcases essential operations for working with numerical data efficiently and coverting them into numpy array.
---
## Table of Contents
1. [Introduction](#introduction)
2. [Setup and Dependencies](#setup-and-dependencies)
3. [CRUD Operations in NumPy](#crud-operations-in-numpy)
- [Create Arrays](#create-arrays)
- [Read Arrays](#read-arrays)
- [Update Arrays](#update-arrays)
- [Delete Elements from Arrays](#delete-elements-from-arrays)
4. [Conclusion](#conclusion)---
## Introduction
**NumPy** is a powerful library for numerical computing in Python. This walkthrough covers the **CRUD operations** that form the basis of array manipulation and data analysis.
---
## Setup and Dependencies
Ensure you have the following installed:
- Python 3.x
- Jupyter Notebook or JupyterLab
- NumPyInstall NumPy using pip:
```bash
pip install numpy