Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 2 out of 11 pages
Summary

Summary Python Data Operations 2: Methods

Document preview thumbnail
Preview 2 out of 11 pages

Notes of Pandas data operations covered in the Principles of Programming course, part of the Computer Science and AI bachelor degree. The notes are initially written in Jupyter Notebook. They contain practical examples of data operations in python and images to explain the structures and processes. This second notebook contains: - Arithmetic operations - add - subtract - multiply - divide - Store solution in new column - Comparison - equal to - not equal to - greater than - less than - Other math functions - sum - maximum and minimum - median and mean - standard deviation and variability - Delete rows and columns - Renaming rows and columns - Replacing multiple values - Sort - sort by values - sort by index

Content preview

Python Data Operations 2: Methods
(Using the numpy and pandas packages imported in section one.)

This second section contains:

Arithmetic operations

add
subtract
multiply
divide
Store solution in new column
Comparison

equal to
not equal to
greater than
less than
Other math functions

sum
maximum and minimum
median and mean
standard deviation and variability
Delete rows and columns
Renaming rows and columns
Replacing multiple values
Sort

sort by values
sort by index



pd.set_option('display.max_columns', None)



Arithmetic operation

# create test dataframe
test_df = pd.DataFrame([
['A3', 0, -1, 0, 'si'],
['B1', 1, None, 0, 'no'],
['B3', 4, None, 0, 'no'],
['B3', 5, 1, 0, 'si'],
['A1', 4, 0, None, None],

, ['A3', 1, 2, 1, 'si'],
['C2', 4, 1, 1, 'no']],
columns=['A', 'B', 'C', 'D', 'E'],
index=[f'R{i}' for i in range(7)]
)
test_df


A B C D E

R0 A3 0 -1.0 0.0 si

R1 B1 1 NaN 0.0 no

R2 B3 4 NaN 0.0 no

R3 B3 5 1.0 0.0 si

R4 A1 4 0.0 NaN None

R5 A3 1 2.0 1.0 si

R6 C2 4 1.0 1.0 no



#add 10 to column D
test_df['D'] + 10

R0 10.0
R1 10.0
R2 10.0
R3 10.0
R4 NaN
R5 11.0
R6 11.0
Name: D, dtype: float64


# subtracting a value from column D
test_df['D'] - 10
test_df['D'].sub(10)

R0 -10.0
R1 -10.0
R2 -10.0
R3 -10.0
R4 NaN
R5 -9.0
R6 -9.0
Name: D, dtype: float64


#the above operations will not update the dataframe
test_df

Connected book
 image
Eric Matthes Python Crash Course
Publisher: 2015 ISBN: 9781593277390 Edition: Unknown

Document information

Study
Summarized whole book?
No
Which chapters are summarized?
Pandas data operations
Uploaded on
December 9, 2022
Number of pages
11
Written in
2022/2023
Type
Summary
$8.96

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Sold
2
Followers
2
Items
11
Last sold
3 year ago




Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions