Bei Le's blog

My programming journey

Home About Archive Search

Week 10 - Matplotlib and Seaborn & Data and Visualisations

May 27, 2021

Introduction to Matplotlib and Seaborn
Resources for Matplotlib and Seaborn

Read More

Week 10 - Pandas (Part V) - Exploratory Data Analysis

May 26, 2021

Pandas - Exploratory Data Analysis:

Read More

Week 10 - Pandas (Part IV) - Transforming Databases

May 24, 2021

Pandas - Transforming Databases:

Read More

Week 9 - Pandas (Part III) - Settings and options, Advanced Calculations

May 22, 2021

Pandas - Settings and options:

  1. Export our dataframe as csv
  2. Configuring options to view max or selected no. of columns/ rows
  3. To edit float values’ format to 2 d.p.
Read More

Week 9 - Pandas (Part II) - Basic Analysis, Indexes

May 19, 2021

Pandas - Basic Analysis:

  1. df.value_counts( )
  2. df.sort_values( )
  3. Boolean indexing
  4. String handling
Read More

Week 9 - Pandas (Part I) - Introduction, Data input and validation, create columns & dataframes

May 17, 2021

Pandas - Data input and validation:

  1. Install and import Pandas
  2. pd.read_csv( )
  3. df.shape[ ]
  4. df.head( ) , df.tail( )
  5. df.info( )
  6. df.describe( )
  7. df.drop( )
  8. df.isnull( )
  9. df.dtypes
  10. df[‘seriesname’] or df[“seriesname”] or df.seriesname
  11. df[[‘columnname’,’columnname2’]]
  12. type( )
  13. Adding a column into the dataframe
  14. Creating a dataframe
Read More
« Prev 1 2 3 4 5 6 7 8 Next »