I have created below code in python for Power BI. This is not showing anything.
    # The following code to create a dataframe and remove duplicated rows is always executed and acts as a preamble for your script: 
    # dataset = pandas.DataFrame(Company, Target)
    # dataset = dataset.drop_duplicates()
    # Paste or type your script code here:
    import matplotlib.pyplot as plt 
    from plotnine import *
    from plotnine.data import mpg
    (ggplot(dataset)         # data 
     + aes(x='Company')    # variable 
     + geom_bar(size=20)) # ype of plot 
    plt.show()