Lineare Regression
This commit is contained in:
@@ -1,7 +1,12 @@
|
||||
import os
|
||||
import pandas as pd
|
||||
import numpy as np
|
||||
|
||||
df = pd.read_csv('/home/pi/Documents/Code/Python/ProgrammierungUndDatenanalyse/Sonstiges/STAT2/vl2-varianz-v1.csv')
|
||||
# location will help to open files in the same directory as the py-script
|
||||
__location__ = os.path.realpath(
|
||||
os.path.join(os.getcwd(), os.path.dirname(__file__)))
|
||||
|
||||
df = pd.read_csv(os.path.join(__location__, 'vl2-varianz-v1.csv'))
|
||||
|
||||
# Dataframe
|
||||
print(df)
|
||||
|
||||
Reference in New Issue
Block a user