Skip to content

Instantly share code, notes, and snippets.

View subpath's full-sized avatar
🇩🇪

Alexander Osipenko subpath

🇩🇪
View GitHub Profile
@subpath
subpath / Load_data_from_cryptocompare.py
Created August 9, 2018 15:39
Load data from cryptocompare API
import numpy as np
import pandas as pd
import requests
def get_market_data(ticker):
"""
Ticker in format quote/base,
for example 'BTC/USD'
return: pandas dataframe
@subpath
subpath / Load_data_from_cryptocompare
Created August 9, 2018 15:37
Load data from cryptocompare API
import numpy as np
import pandas as pd
import requests
""
LOAD DATA
"""
def get_market_data(ticker):
"""
Ticker in format quote/base,
@subpath
subpath / PostgreSQL_setup_instruction.md
Created July 13, 2018 07:04
PostgreSQL setup instruction

PostgreSQL setup instruction

Only for Ubuntu, because I use Ubuntu on

  1. Install postgreSQL:
sudo apt install postgresql postgresql-contrib
@subpath
subpath / Data preparation with pandas and numpy
Created November 6, 2015 17:15
Data preparation with pandas and numpy
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Data preparation with pandas and numpy"
]
},
{
@subpath
subpath / Titanic Kaggle Challenge
Created October 25, 2015 10:09
Titanic Kaggle Challenge
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Kaggle Competition | Titanic: Machine Learning from Disaster\n",
"The competition's website is located on [Kaggle.com](https://www.kaggle.com/c/titanic)"
]
},
@subpath
subpath / Classification in Python
Created October 22, 2015 13:32
Classification in Python
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Example of Machine Learning classifications in Python"
]
},
{
@subpath
subpath / Simple polynomial regression for single feature in Python
Created October 14, 2015 17:35
Simple polynomial regression for single feature in Python
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This is an example of simple polynomial regression for single feature.\n",
"As a dataset I'm using calibration data of high pressure densitometer.\n",
"My goal was to make an equation, that's can decribe relationship between temperature and period of oscillation of densitometer's U-tube."
]