!pip install kaggle
#구글 코랩을 활용할때 터미널을 사용하려면 !를 붙여야 한다.
#위와 같은 태그로 라이브러리를 설치해준다.
!kaggle competitions list -s health
#health와 관련된 competitons 모아서 보여줌
!kaggle competitions files -c health
#헬스와 관련된 competiton 안에 있는 파일 보여줌
!kaggle competitions list -h
#경진대회 API의 도움말 보기
!kaggle competitions list -s health
#health에 해당되는 경진대회 찾아보기
!kaggle competitions list -s nlp
#nlp와 관련된 경진대회 찾아보기
!kaggle competitions files -c titanic
#타이타닉 경진대회의 데이터셋 보기
!kaggle competitions download -c titanic
#타이타닉 경진대회 파일을 다운로드 받기
!kaggle competitions submit -c titanic -f ./titanic/data/tutorial.csv -m'API submit msg'
#경진대회의 약관에 동의 했다면 서브미션 가능
!kaggle datasets list -s survey
!kaggel datasets files -d stackoverflow/so-survey-2019
#설문조사와 관련된 데이터 셋 찾기
#2019년 스택오버플로우의 설문조사 관련한 데이터 셋 찾기
'데이터분석' 카테고리의 다른 글
[데이터 분석] 2020년도 버거지수 만들기(1) (1) | 2020.06.25 |
---|---|
캐글(kaggle)과 구글 코랩(Google Colab) 연동하기 (0) | 2019.12.16 |
텐서플로우(tensorflow)배추 가격 예측 저장된 학습모델로 가격예측 하기 (0) | 2019.12.14 |
텐서플로우 배추 가격 예측 AI(다변인 선형회귀 모델 개발하기) (0) | 2019.12.09 |
텐서플로우(Tensorflow)선형회귀 정리 (0) | 2019.12.07 |