In [ ]:
%matplotlib inline
import datetime
from collections import Counter
import pandas as pd
from sentiment_classification import run_network
from utils import clean_text
from utils import calc_ratios
In [ ]:
from IPython.core.display import HTML
css = open('table.css').read() + open('notebook.css').read()
HTML('<style>{}</style>'.format(css))
In [ ]:
reviews = pd.read_csv("reviews.csv", encoding="utf-8")
reviews.head(5)
In [ ]:
ratings = pd.read_csv("ratings.csv", encoding="utf-8")
ratings.head(5)
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]: