# datacamp

20230129_Data Scientist과정 완주!
이로서 data scientist과정의 모든 수업을 수강했다. 학교다니면서 '이건 금방듣겠지' 라고 했는데, 종강이후 한달이 지나서야 겨우 끝을 봤다. 아직 certi 시험이 남아있으니 조금만 힘내보자!

20230128_Python Programming_TEST
맨날 쓰는 패키지만 써서 그런지 파이썬 자체 프로그래밍 실력은 형편없다. 이렇게 된 김에 여기 문제는 전체 다 리뷰해보자 기본적인 파이썬 함수 작성 법을 질문하는 문제 파이썬 클래스를 작성하는 문제 먼저 클래스를 작성하기 위해서는 class 키워드를 사용 기본적인

20230128_Importing and Cleaning with Python_TEST
맥북 이슈로 답을 입력하지 못했던것 같은데...pivot_table 함수에서 집계 함수 적용을 위해서는 aggfunc이라는 파라미터를 사용해야한다. dtype 설명default : floatData-type of the resulting array. If this

20230124_Machine Learning with Tree-Based Models in Python
Lesson learned Chapter1 : Decision-Tree Learning Chapter2 : Generalization Error, Cross-Validation, Ensembling Chapter3 : Bagging and Random Forest Ch

20230122_Supervised learning with scikit-learn
Using supervised learning techniques to build predictive modelsFor both regression and classification problemsUnderfitting and overfittingHow to split

20230122_Hypothesis testing in Python
Chapter1Workflow for testing proportions vs. a hypothesized valueFalse negavie/false positive errorsChapter2Testing differences in sample means betwee

20230121_Sampling in Python
꾸준하기 정말 어렵다...그리고 갈수록 내용이 어렵네...통계를 너무 까먹었나보다... 공부하자...Chapter1Sampling basicsSelection biasPseudo-random numbersChapter2Simple random samplingSystem

20230121_Introduction to regression with statsmodels in Python
Chapter 1Fit a simple linear regressionInterpret coefficientsChapter 2Make predictionsRegression to the meanTransforming variablesChapter 3Quantifin

Datacamp Python Programming 오답노트
Python Programming 오답노트 1. kwargs kwargs는 keyword argument의 줄임말로 키워드를 제공 **kwargs는 키워드 = 특정값 형태로 함수를 호출 딕셔너리 형태로 함수 내부로 전달된다. 2. list comprehension 두 자리가 틀렸었다. i*2 for i in range (5) 따라서 i*2 값이 리...

20230113_Dates and Times in Pandas
Recap : Dates and CalendarsThe date()class takes a year, month, and day as argumentsA date object has accessors like .year, and also methods like .wee