Total Newby to Python.
I have a EV Car dataset that I have read from a csv file. I want to do a count number of sales for each brand (column name is "Make") and then plot them against each other. E.g. Dataset contains approx.. 105,000 rows of data with 10 different brand names E.g. Tesla could occur in 40,000 rows VW could occur in 30,000 rows Kia could occur in 35,000 rows
The data in each row is an object as per .dtypes. see screen shot.
I think I have gotten the dataset to the required state. I have done some of the basics. Created a DataFrame, sorted the data, checked for duplicates, removed blank data.
My first few lines of code:
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
plt.style.use('seaborn')
This is as far as I have gotten from the analysis point of view
brand_sales = EVs_by_Population.groupby('Make')
brand_sales.plot(kind='bar')
plt.show()
Nothing happens thank you




value_countslike explained here