0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Pythonによる移動平均フィルタ

Last updated at Posted at 2020-04-18

はじめに

Pythonで移動平均フィルタを使うためのプログラム

import matplotlib.pyplot as plt
import numpy as np
import matplotlib
import pandas as pd

# CSVを読み込む
data = pd.read_csv("hoge.csv")

data_col = data.columns
plt.figure(figsize=(5, 5))

# 移動平均
n = 500 #移動平均の点数
ave = np.convolve(data[data_col[1]], np.ones(n)/float(n), 'same')

# グラフの作成
plt.figure(1)
plt.plot(ave * 1e3,data[data_col[3]] * 1e3)

# グラフ保存
plt.savefig('hoge.png')
plt.show()

実行結果

hoge.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?