Getting Started w/ Python: Difference between revisions

Line 57: Line 57:
* Pivot Tables
* Pivot Tables
* Plotting
* Plotting
** <a href='https://www.w3schools.com/python/pandas/pandas_plotting.asp'>Matplotlib</a>
** [https://www.w3schools.com/python/pandas/pandas_plotting.asp Matplotlib]
** Seaborn
** Seaborn
** Plotly
** Plotly

Revision as of 04:31, 13 January 2023


Installation

  1. Install Python for Windows
    1. Add Python to Environment Variables (Checked)
  2. Install VSCode for Windows
    1. From Extensions, install the following:
      1. Python
      2. Jupyter

Setup

  1. Create a Working Directory (Documents > FOQA)
  2. Open Working Directory from VSCode
    1. File > Open Folder > Select Folder
    2. If prompted, Trust the folder
  3. Download pySara from Teams > FOQA > Files > Python > pysara.zip and extract to your new working directory
  4. From the pysara folder extracted to your working directory, double click on Getting Started.ipynb. It should open in VSCode
  5. To install required libraries:
    • Terminal menu > New Terminal
    • pip install pandas seaborn numpy requests plotly
  6. Follow the instructions in the notebook to install

Jupyter Introduction

  1. Cell Types: Code and Markup
  2. Shortcuts (hit escape to enter command mode)
    • Shift Enter: Execute Cell
    • A: Add Cell Above
    • B: Add Cell Below
    • DD: Delete Cell
    • F: Find/Find and Replace
    • Enter: Enter edit mode
  3. Markdown
    • Headers
    • Lists
  4. Markdown Guide: https://www.ibm.com/docs/en/watson-studio-local/1.2.3?topic=notebooks-markdown-jupyter-cheatsheet

Python Introduction


  • Python Runthrough
    1. imports & libraries
    2. Variables (numbers, strings, lists, tuples, dictionaries, objects)
    3. functions
    4. looping
    5. if, elif, else

Pandas and Data Manipulation