# datacamp

67개의 포스트
post-thumbnail

20230129_Data Scientist과정 완주!

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

2023년 1월 29일
·
0개의 댓글
·
post-thumbnail

20230128_Python Programming_TEST

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

2023년 1월 28일
·
0개의 댓글
·
post-thumbnail

20230128_Importing and Cleaning with Python_TEST

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

2023년 1월 28일
·
0개의 댓글
·
post-thumbnail

20230127_project

조금만 더 힘내자!

2023년 1월 27일
·
0개의 댓글
·
post-thumbnail

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

2023년 1월 24일
·
0개의 댓글
·
post-thumbnail

20230122_Supervised learning with scikit-learn

Using supervised learning techniques to build predictive modelsFor both regression and classification problemsUnderfitting and overfittingHow to split

2023년 1월 22일
·
0개의 댓글
·
post-thumbnail

20230122_Hypothesis testing in Python

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

2023년 1월 22일
·
0개의 댓글
·
post-thumbnail

20230121_Sampling in Python

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

2023년 1월 21일
·
0개의 댓글
·
post-thumbnail

20230121_Introduction to regression with statsmodels in Python

Chapter 1Fit a simple linear regressionInterpret coefficientsChapter 2Make predictionsRegression to the meanTransforming variablesChapter 3Quantifin

2023년 1월 20일
·
0개의 댓글
·
post-thumbnail

Datacamp Python Programming 오답노트

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

2023년 1월 18일
·
0개의 댓글
·
post-thumbnail

20230116_Writing_Function_in_Python

Lesson Learned

2023년 1월 16일
·
0개의 댓글
·
post-thumbnail

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

2023년 1월 13일
·
0개의 댓글
·
post-thumbnail

20230111_Cleaning data in Python

Common data problemsData type constraintData range constraintUniqueness constraintText and categorical data problemsMembership constraintCategorical v

2023년 1월 11일
·
0개의 댓글
·
post-thumbnail

20230110_Intermediate importing data in Python

Importing text files and flat filesImporting files in other formatsWriting SQL queriesGetting data from relational databasesPulling data from the webP

2023년 1월 10일
·
0개의 댓글
·
post-thumbnail

20230109_Introduction to importing data in Python

Relational databaseQueriesSELECTWHEREJOIN

2023년 1월 9일
·
0개의 댓글
·

pandas - Introduction to Data Engineering 220612

파이프 라인이라는 것이ETL, 즉 데이터 추출, 데이터 변형, 데이터 로드 => 이 과정을 일컫는 말이라고 생각하면 될 듯.데이터 수집 based on pandas2차원 데이터 구조columns(열)Rows(행, index 있음) => 기본 인덱스는 행 번호이지만 열을

2022년 6월 12일
·
0개의 댓글
·