2024-04-05から1日間の記事一覧

pandra

import pandas as pd import matplotlib.pyplot as plt df = pd.read_csv("data.csv",header = 0,skiprows = 7) print(df.head()) #print(df.info()) #print(df.describe()) #print(df['Time']) #print(df['ILEAK2']) #filtered_data = df[df['ILEAK2'] > 4]…