NumPy and Pandas Overview

0.0(0)
studied byStudied by 2 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/15

flashcard set

Earn XP

Description and Tags

Flashcards covering key concepts about NumPy and Pandas libraries in Python for numerical computation and data analysis.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

NumPy

A fundamental library for numerical computing in Python that stands for Numerical Python.

2
New cards

ndarray

The ndarray type is a mutable container in NumPy where all elements must be of the same type.

3
New cards

reshape()

A function in NumPy that changes the shape of an array without changing its data.

4
New cards

ravel()

A function in NumPy that returns a flattened array.

5
New cards

insert()

A function in NumPy that inserts values along a specified axis of an array.

6
New cards

zeros()

A function in NumPy that creates an array filled with zeros.

7
New cards

ones()

A function in NumPy that creates an array filled with ones.

8
New cards

Pandas

A powerful Python library for data analysis, built on top of NumPy.

9
New cards

Series

A one-dimensional array-like object in Pandas that contains data with associated indexes.

10
New cards

DataFrame

A two-dimensional, size-mutable, potentially heterogeneous tabular data structure in Pandas.

11
New cards

NaN

Represents a null value or missing data in a Pandas Series.

12
New cards

Element-wise addition

An arithmetic operation in NumPy where two arrays are added together element by element.

13
New cards

Element-wise subtraction

An arithmetic operation in NumPy where one array is subtracted from another array element by element.

14
New cards

Element-wise multiplication

An arithmetic operation in NumPy where two arrays are multiplied together element by element.

15
New cards

Element-wise division

An arithmetic operation in NumPy where one array is divided by another array element by element.

16
New cards

Mathematical functions in NumPy

Functions such as sqrt(), log(), sin(), max(), and median that operate on array elements.