Skip to content

Commit

Permalink
fixed some errors in data analysis poc
Browse files Browse the repository at this point in the history
  • Loading branch information
carmelgafa committed Feb 8, 2024
1 parent ef49adb commit 8d1a5db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Empty file.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import os
import pandas as pd
from pandas import DataFrame
import os
import matplotlib.pyplot as plt

dirname = os.path.dirname(__file__)
filename = os.path.join(dirname, 'data\winequality-red.csv')
filename = os.path.join(dirname, '..\data\winequality-red.csv')

df = pd.read_csv(filename, sep=';')
# print(df.head())
Expand Down Expand Up @@ -35,5 +35,3 @@

df[['total_sulfur_dioxide','free_sulfur_dioxide','sulphur_dioxide_difference']][200:300].plot()
# plt.show()


0 comments on commit 8d1a5db

Please sign in to comment.