Skip to content

Commit

Permalink
Create nexus_data_analytics_dashboard.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Jul 12, 2024
1 parent 7f78a85 commit 71c1fe2
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import pandas as pd
import matplotlib.pyplot as plt

class NexusDataAnalyticsDashboard:
def __init__(self):
self.data = pd.read_csv('data.csv')

def display_dashboard(self):
plt.plot(self.data['column1'], self.data['column2'])
plt.show()

if __name__ == '__main__':
dashboard = NexusDataAnalyticsDashboard()
dashboard.display_dashboard()

0 comments on commit 71c1fe2

Please sign in to comment.