This document will contain the syntax for working with various geocoding APIs
Documentation: https://developers.google.com/maps/documentation/maps-static/dev-guide
This document will contain the syntax for working with various geocoding APIs
Documentation: https://developers.google.com/maps/documentation/maps-static/dev-guide
"""Histogram bars are not centered at their label by default. | |
The function below returns the bins parameter value for use with matplotlib's | |
hist() method. | |
""" | |
import numpy as np | |
import pandas as pd | |
def bin_array(distribution): | |
"""Returns an array to be used as the parameter value to center the |
808-381-0751 | [email protected] | Github | LinkedIn
Software developer with experience in machine learning and data science in the process of making a career transition from structural engineering. I enjoy working on personal projects and collaborating with others as much as possible. In addition to keeping up with the latest machine learning tools, I was driven to understand how to build REST APIs and web applications in order to easily deploy and demonstrate my work to the online community.
Documentations
sqlite3: https://www.sqlite.org/cli.html
# ┌──────────────── Minute (0 ... 59) | |
# │ ┌───────────── Hour (0 ... 23) | |
# │ │ ┌────────── Day (1 ... 31) | |
# │ │ │ ┌─────── Month (1 ... 12) | |
# │ │ │ │ ┌──── Weekday (0=Sun ... 6=Sat) | |
# ┴ ┴ ┴ ┴ ┴ | |
# * * * * * | |
# run at 1:00 AM everyday from Monday through Friday | |
0 1 * * 1-6 cd projects/cron_hello_world/ && python hello_world.py |
import datetime | |
import time | |
# get current date in format yymmdd; useful for naming files | |
today = datetime.date.today().strftime("%y%m%d") | |
# get current unix time in seconds as integer | |
now = int(time.time()) | |
# get time at midnight for current day in seconds as integer |