“Lesen Sie CSV Python Pandas Plot” Code-Antworten

Lesen Sie CSV Python Pandas Plot

import pandas as pd
from datetime import datetime
import csv
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
headers = ['Sensor Value','Date','Time']
df = pd.read_csv('C:/Users\Lala Rushan\Downloads\DataLog.CSV',names=headers)
print (df)

df['Date'] = df['Date'].map(lambda x: datetime.strptime(str(x), '%Y/%m/%d %H:%M:%S.%f'))
x = df['Date']
y = df['Sensor Value']

# plot
plt.plot(x,y)
# beautify the x-labels
plt.gcf().autofmt_xdate()

plt.show()
Merwanski

Laden Sie die CSV -Datei mit Pandas

import pandas as pd

df = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
print (df)
Yawning Yacare

Pandas las CSV

df = pd.read_csv('data.csv') 
Victorious Vicuña

Ähnliche Antworten wie “Lesen Sie CSV Python Pandas Plot”

Fragen ähnlich wie “Lesen Sie CSV Python Pandas Plot”

Weitere verwandte Antworten zu “Lesen Sie CSV Python Pandas Plot” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen