diff --git a/.gitignore b/.gitignore index f537afb..23969cb 100644 --- a/.gitignore +++ b/.gitignore @@ -48,4 +48,5 @@ MANIFEST # Per-project virtualenvs .venv*/ -.DS_Store \ No newline at end of file +.DS_Store +mbikedata.csv \ No newline at end of file diff --git a/Exploratory Analysis/bikeshare_eda.ipynb b/Exploratory Analysis/bikeshare_eda.ipynb new file mode 100644 index 0000000..0de6712 --- /dev/null +++ b/Exploratory Analysis/bikeshare_eda.ipynb @@ -0,0 +1,64 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "from dask import dataframe as dd\n", + "df = dd.read_csv('../data/mbikedata.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['Coords_Latitude', 'Coords_Longitude', 'Trip_ID', 'Bike_Event',\n 'User_ID', 'Date_Time'],\n dtype='object')" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.columns" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +}