Pandas for Everyone: Python Data Analysis by Nazmul Rajib

Pandas for Everyone: Python Data Analysis by Nazmul Rajib

Author:Nazmul Rajib
Language: eng
Format: epub
Publisher: Addison-Wesley
Published: 2018-04-14T04:00:00+00:00


9.3.2.1 Column-wise Operations

Use the axis=0 parameter (the default value) in apply when working with functions in a column-wise manner.

Click here to view code image

df.apply(print_me, axis=0)

0 10

1 20

2 30

Name: a, dtype: int64

0 20

1 30

2 40

Name: b, dtype: int64

a None

b None

dtype: object

Compare this output to the following:

Click here to view code image

print(df['a'])

0 10

1 20

2 30

Name: a, dtype: int64

print(df['b'])

0 20

1 30

2 40

Name: b, dtype: int64

You can see that the outputs are exactly the same. When you apply a function across a DataFrame (in this case, column-wise with axis=0), the entire axis (e.g., column) is passed into the first argument of the function. To illustrate this further, let’s write a function that calculates the mean (average) of three numbers (each column in our data set contains values).

def avg_3(x, y, z):

return (x + y + z) / 3

If we try to apply this function across our columns, we get an error.

Click here to view code image

# will cause an error

print(df.apply(avg_3))

Traceback (most recent call last):

File "<ipython-input-1-5ebf32ddae32>", line 2, in <module>

print(df.apply(avg_3))

TypeError: ("avg_3() missing 2 required positional arguments: 'y' and

'z'", 'occurred at index a')

From the (last line of the) error message, you can see that the function takes three arguments, but we failed to pass in the y and z (i.e., the second and third) arguments. Again, when we use apply, the entire column is passed into the first argument. For this function to work with the apply method, we will have to rewrite parts of it.

Click here to view code image

def avg_3_apply(col):

x = col[0]

y = col[1]

z = col[2]

return (x + y + z) / 3

print(df.apply(avg_3_apply))

a 20.0

b 30.0

dtype: float64



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Popular ebooks
Eco-friendly approach of bio-indigo synthesis and developing purification methods towards isolation of indigo from indirubin and bacterial fragments by Ramalingam Manivannan & Kaliyan Prabakaran & Young-A Son(203745)
Personalized inhaled bacteriophage therapy for treatment of multidrug-resistant Pseudomonas aeruginosa in cystic fibrosis by unknow(172325)
CONSORT 2025 statement: updated guideline for reporting randomized trials by unknow(80746)
Critical evaluation of the ProfiLER-02 study design and outcomes by Vivek Subbiah & Razelle Kurzrock(80307)
Cardiac gene therapy makes a comeback by Oliver J. Müller & Susanne Hille & Anca Kliesow Remes(80080)
Whisky: Malt Whiskies of Scotland (Collins Little Books) by dominic roskrow(74427)
Unveiling the design rules for tunable emission in graphene quantum dots: A high-throughput TDDFT and machine learning perspective by Şener Özönder & Mustafa Coşkun Özdemir & Caner Ünlü(50884)
A yeast-based oral therapeutic delivers immune checkpoint inhibitors to reduce intestinal tumor burden by unknow(40255)
Covalent hitchhikers guide proteins to the nucleus by Alexander F. Russell & Madeline F. Currie & Champak Chatterjee(40213)
Meet the Authors: Christopher R. Mansfield and Emily R. Derbyshire by Christopher R. Mansfield & Emily R. Derbyshire(40087)
Alkaline-earth metals promote propane dehydrogenation with carbon dioxide through geometric effects: Altering the reaction pathway by unknow(32728)
Induced iron vacancies boosting FeOOH loaded on sustainable Fenton-like collagen fiber membrane for efficient removal of emerging contaminants by unknow(32503)
Efficient electric-field-assisted photochemical conversion of methane to n-propanol exclusively over penetrated TiO2Ti hollow fibers by Guanghui Feng(32450)
Bi2SiO5 nanosheets as piezo-photocatalyst for efficient degradation of 2,4-Dichlorophenol by Hangyu Shi & Yifu Li & Lishan Zhang & Guoguan Liu & Qian Zhang & Xuan Ru & Shan Zhong(32381)
A novel NDIPTA organic heterojunction photocatalyst with built-in electric field for efficient hydrogen production by Jiahui Yang & Baojun Ma & Yongfa Zhu(32358)
Enhanced conversion of methane to liquid-phase oxygenates via hollow ferrite nanotube@horseradish peroxidase based photoenzymatic catalysis by Jun Duan & Shiying Fan & Xinyong Li & Shaomin Liu(32329)
Ordered macroporous superstructure of defective carbon adorned with tiny cobalt sulfide for selective electrocatalytic hydrogenation of cinnamaldehyde by Xiao-Shi Yuan & Sheng-Hua Zhou & San-Mei Wang & Wenbo Wei & Xiaofang Li & Xin-Tao Wu & Qi-Long Zhu(32255)
What's Done in Darkness by Kayla Perrin(27139)
Topological analysis of non-conjugated ethylene oxide cored dendrimers decorated with tetraphenylethylene: Insights from degree-based descriptors using the polynomial approach by A Theertha Nair & D Antony Xavier & Annmaria Baby & S Akhila(26515)
Investigation of mechanical and self-healing properties of hydroxyl-terminated polybutadiene functionalized with 2-ureido-4-pyrimidinone by Mohsen Kazazi & Mehran Hayaty & Ali Mousaviazar(26452)