20-Days-of-Mercari-Price-Analysis
No description available.
File Explorer
- 017_correlation_analysis.ipynb
- Day10_Basic_Charts.ipynb
- Day11_Advanced_Charts.ipynb
- Day12_Seaborn_Charts_basic.ipynb
- Day13_Heatmap_Pairplot.ipynb
- Day14_Advance_charts_using_seaborn.ipynb
- Day15_EDA_Visual_Story.ipynb
- Day16_Challenge.ipynb
- Day1_First Look.ipynb
- Day2_loc_iloc.ipynb
- Day3_Cleaning.ipynb
- Day4_Featuring.ipynb
- Day5_Groupby-Analysis.ipynb
- Day6_merging-concat.ipynb
- Day7_pivot_table-crosstab.ipynb
- Day8_sort-ranking.ipynb
- Day9_Numpy_on_Mercari.ipynb
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
jupyter
View Details ▼
jupyter
Web application to create and share documents that contain code, visualizations, and notes.
Primarily used for data analysis, scientific computing, and machine learning.
jupyter notebook
Start a Jupyter notebook server in the current directory:
jupyter notebook {{path/to/file}}.ipynb
Open a specific Jupyter notebook:
jupyter nbconvert --to {{html|markdown|pdf|script|...}} {{path/to/file}}.ipynb
Export a specific Jupyter notebook into another format:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
