😺
wiki
  • Welcome, Internet Strangers!
  • sql
    • etl
      • Basics to Remember
      • Context to Remember
      • Naming Practices
      • ETL Steps
    • performance
      • Please No
      • Initial Explorations
      • Stored Procedures
    • select-tricks
      • Over Partition
      • Stored Procedures*
      • Creating Parameters
  • python
    • Working with Files
    • Classes in Python
    • Dictionaries
    • Working with Strings
    • Using Lambda
    • Seaborn
    • machine-learning
      • Learning Pandas
      • MatPlotLib! The Dreaded Line Graph...
      • matlab-qualgraphs-notes
      • Linear Regression Example
      • kNN Analysis in ScikitLearn
    • Neat Snippets
  • bash
    • helpful_cmd
  • math
    • Basic Definitions
    • Linear Regressions
    • Meaningful Sampling
Powered by GitBook
On this page

Was this helpful?

python

This section... is currently a pile of notes from across about five years, and hasn't really been cleaned up much. Everything is correct, but there's a decent bit of mess. You've been warned.

General things to keep in mind with Python:

  • Python is zero-indexed; everything starts at 0

  • strptime goes from string to datetime object, strftime goes the other way

Useful Resources

(O'Reilley Data Science Handbook)[https://jakevdp.github.io/PythonDataScienceHandbook/]

(Jupyter Notebook Documentation)[https://jupyter-notebook.readthedocs.io/en/stable/]

PreviousCreating ParametersNextWorking with Files

Last updated 3 years ago

Was this helpful?