eland/eland/tests/dataframe/test_reviews_pytest.py
2019-07-12 15:24:32 +00:00

18 lines
446 B
Python

# File called _pytest for PyCharm compatability
from eland.tests.common import TestData
import eland as ed
class TestDataFrameReviews(TestData):
def test_explore(self):
ed_reviews = ed.DataFrame('localhost', 'anonreviews')
print(ed_reviews.head())
print(ed_reviews.describe())
print(ed_reviews.info())
print(ed_reviews.hist(column="rating", bins = 5))
#print(ed_reviews.head().info_es())