Forum Discussion

BennyS's avatar
BennyS
New Member
2 years ago
Solved

Data Preparation in PowerBI or in Python upfront?

Hi Community!   I am currently starting my "PowerBI Career" and I guess I need some starting push.  The result of my python script that collects data is a CSV file which is uploaded to a database ...
  • Anonymous's avatar
    Anonymous
    2 years ago

    You could do a Python visual:

     

    import seaborn as sns
    import pandas as pd
    import matplotlib.pyplot as plt
    
    all_values = ','.join(dataset['Column1']).split(',')
    
    sns.countplot(y=all_values
    plt.show()

     

     Which would result in: