Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arg로 값을 입력받는 코드 작성 #74

Open
Chaewon-Leee opened this issue Dec 21, 2022 · 0 comments
Open

arg로 값을 입력받는 코드 작성 #74

Chaewon-Leee opened this issue Dec 21, 2022 · 0 comments
Assignees
Labels

Comments

@Chaewon-Leee
Copy link
Owner

Chaewon-Leee commented Dec 21, 2022

Description

  • 사용자에게 첨부 받은 csv파일 데이터로 변환
  • input : 사용자가 첨부한 데이터
  • output : 리스트 형식으로 반환

expected output

warnings.simplefilter(
    action='ignore', category=FutureWarning) 

parser = argparse.ArgumentParser(
    description='raw data를 입력시 푸리에변환을 거친 PCA와 t-sne 결과를 보여주는 모듈')
parser.add_argument('raw_data_path', help='raw data path(.csv)')
parser.add_argument('fs', help='sampling frequency (hz unit)')

args = parser.parse_args()
all_dataset = np.loadtxt(args.raw_data_path, delimiter=',')

expected issues

  • 본 이슈는 다음 이슈들과 종속성이 없음
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant