신호생성 repo (24. 1. 5 ~).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
486 B

import pandas as pd
import sys
sys.path.append('Scripts')
from preprocess_daily import DailyPreprocessor
self = DailyPreprocessor()
self.load_data() # 1. 데이터 불러오기
self.make_match1(fetch_all=True) # 2-1-1
print(self.match1)
self.match1 = self.match1.drop(index=[9, 11])
self.match1.loc[10, ['phas_A', 'phas_B']] = 2
self.match1.at[20, 'move_A'] = 4
self.match1 = self.match1.reset_index(drop=True)
self.match1.to_csv('Intermediates/match1.csv', index=0)
print(self.match1)