PyCaret으로 주성분 분석을 진행한 손잡이[정규화+가시화(plotly)] 노트
개요
소스 코드
import pandas as pd
def load_sampledata():
data = pd.read_csv(r'pycaret_sample.csv',
encoding='shift-jis',
engine='python',
index_col=[0],
parse_dates=[0])
data = data.resample('h').sum()
data['hour'] = data.index.hour
data['date'] = data.index.strftime('%Y-%m-%d (%a)')
dataset = data.pivot(index='hour',columns='date',values='電力量')
dataset = dataset.T.reset_index()
return dataset
from pycaret.clustering import *
clu = setup(data = load_sampledata(),normalize=True)
# creating a model
hclust = create_model('hclust')
# plotting a model
plot_model(hclust,plot='cluster',feature='date')
총결산
Reference
이 문제에 관하여(PyCaret으로 주성분 분석을 진행한 손잡이[정규화+가시화(plotly)] 노트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/snuow/items/d335f5c4bf9365c33edb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)