Skip to content

Commit

Permalink
visual intro to pandas; numpy exercises
Browse files Browse the repository at this point in the history
  • Loading branch information
ariefrahmansyah committed Aug 16, 2024
1 parent 2bd0466 commit 897179f
Show file tree
Hide file tree
Showing 15 changed files with 2,673 additions and 0 deletions.
5 changes: 5 additions & 0 deletions data/music.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"Artist","Genre","Listeners","Plays"
"Billie Holiday","Jazz",1300000,27000000
"Jimi Hendrix","Rock",2700000,70000000
"Miles Davis","Jazz",1500000,48000000
"SIA","Pop",2000000,74000000
5 changes: 5 additions & 0 deletions data/music_with_na.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"Artist","Genre","Listeners","Plays"
"Billie Holiday","Jazz",1300000,27000000
"Jimi Hendrix","Rock",2700000,
"Miles Davis","Jazz",1500000,48000000
"SIA","Pop",2000000,74000000
2 changes: 2 additions & 0 deletions docs/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,12 @@ parts:
chapters:
- file: numpy/intro_to_numpy
- file: numpy/visual_intro_to_numpy
- file: numpy/numpy_exercises

- caption: Pandas
chapters:
- file: pandas/intro_to_pandas
- file: pandas/visual_intro_to_pandas

- caption: TensorFlow
chapters:
Expand Down
Binary file added docs/images/pandas/create_new_column.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/pandas/filter_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/pandas/filter_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/pandas/filter_missing_values.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/pandas/group_by.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/pandas/select_column.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/pandas/select_column_and_rows.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/pandas/select_rows.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/pandas/set_missing_value.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/pandas/view_pandas_dataframe.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 897179f

Please sign in to comment.