Aggregation – Pandas Numpy Python Series DataFrame
In this quick notes, we will go through aggregation in Python. This is part of lectures on Learning Python for Data Analysis and Visualization by Jose Portilla on Udemy. import numpy as np import pandas as pd from pandas import Series, DataFrame url = “http://archive.ics.uci.edu/ml/machine-learning-databases/wine-quality/” In [2]: dframe_wine = pd.read_csv(‘winequality-red.csv’, sep=’;’) In [4]: dframe_wine.head() Out[4]: fixed…