Week 7 - data analysis

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/10

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:04 PM on 4/17/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

11 Terms

1
New cards

what does data analysis allow for

problem solving, hypothesis testing and evidence-based decision making

2
New cards

data analysis in python

open source so broad tool, make dealing with large data sets easier,

3
New cards

pandas

  • data frame object for data manipulation

4
New cards

DataFrame

a common form data is stored in, a table which contains many different datatypes such as integers, strings, floats and lists

5
New cards

df.head()

prints first few rows of data

6
New cards

df.info()

shows you the columns, if they have nukk data and variable type of each column

7
New cards

df.shape()

will give you the size of the data (number of rows x columns)

8
New cards

.mean()

average of each column

9
New cards

.std()

standard deviation of each column

10
New cards

.unique()

gives u unique values in that column

11
New cards

seaborn

integrates with pandas

  • has large number of plotting functions

  • default plotting parameters look good

  • easy to customise