Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

A Quick Introduction to Pandas Dataframes Pandas is the main data structure and manipulation library of python. We will make extensive use of pandas during

A Quick Introduction to Pandas Dataframes
Pandas is the main data structure and manipulation library of python. We will make extensive use of pandas during the course. You can think of a pandas dataframe as an excel spreadsheet, in which each row is associated to an observation and each column is representing a different variable (characteristic). For example, assume we want to store information about the students of this classroom. We might want to record the name, age, and gpa of each student. Let us create a dataframe, and store the data of a few students. Note: Do not forget to import the library before using it!
Step 1: Create a dataframe with 8 students, with the following:
names : A, B, C, D, E, F, G, H
ages: 21,22,23,24,25,26,27,28
g: 4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5
Step 2: Get a description of the dataframe using describe().
Step 3: Create a scatter plot to describe the relation between age and gpa of students. Use plot. and press 'TAB' to get a list of plots.
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advances In Databases And Information Systems 22nd European Conference Adbis 2018 Budapest Hungary September 2 5 2018 Proceedings Lncs 11019

Authors: Andras Benczur ,Bernhard Thalheim ,Tomas Horvath

1st Edition

3319983970, 978-3319983974

More Books

Students also viewed these Databases questions