Skip to content

Instantly share code, notes, and snippets.

@karamanbk
Last active October 19, 2023 03:59
Show Gist options
  • Save karamanbk/2490d1db2e966359fbd336273b870bf7 to your computer and use it in GitHub Desktop.
Save karamanbk/2490d1db2e966359fbd336273b870bf7 to your computer and use it in GitHub Desktop.
# import libraries
from datetime import datetime, timedelta
import pandas as pd
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
import seaborn as sns
from __future__ import division
import plotly.plotly as py
import plotly.offline as pyoff
import plotly.graph_objs as go
#initiate visualization library for jupyter notebook
pyoff.init_notebook_mode()
tx_data = pd.read_csv('data.csv')
tx_data.head(10)
@aware2013
Copy link

where can i download the data.csv?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment