일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- SimpleImputer
- 보간법
- BDA
- 이상치
- 누락값
- 결측치
- Seaborn
- 선형보간
- 전처리
- stopwords
- matplotlib
- sklearn
- 결측치대체
- 데이터프레임
- Outlier
- Python
- interpolate
- KoNLP
- 대치법
- countplot
- 불용어
- IterativeImputer
- value_counts
- 파이썬
- Boxplot
- join
- MSE
- subplots
- DataFrame
- koNLPy
- Today
- Total
목록독학/C언어 독학 (4)
ACAIT
#define _CRT_SECURE_NO_WARNINGS #include #include #include int main(void) { // [철수] 101 -> 메모리 공간의 주소가 따로 있음. 실행할 때마다 바뀜. // [영희] 201 // [민수] 301호 // 각 문 앞에 '암호' 있음. 암호는 아래 숫자. //int 철수 = 1; //int 영희 = 2; //int 민수 = 3; //printf("철수네 주소 : %d, 암호 : %d\n", &철수, 철수); //printf("영희네 주소 : %d, 암호 : %d\n", &영희, 영희); //printf("민수네 주소 : %d, 암호 : %d\n", &민수, 민수); //// 미션맨 등장! //// 첫 번째 미션: 아파트 각 집에 방문..
한 달쯤 나름 틈틈이 공부했는데... 띄엄띄엄 기록해서 정확하지 않다. 투두메이트랑 다이어리에 적힌 걸론 17일 정도? #define _CRT_SECURE_NO_WARNINGS #include #include #include int main(void) { srand(time(NULL)); printf("\n\n === 아빠는 대머리 게임 === \n\n"); int answer=0; // 정답 입력 int treatment = rand() % 4; // 발모제 4개 중 1개 int cntShowBottle = 0; // 이번 게임에 보여줄 병 갯수 int prvCntShowBottle = 0; // 앞 게임에 보여준 병 갯수 // 라운드별 병 갯수 다르게 해서 정답률 상승 // // 3번의 기..
#include #include int main_condition(void) { // 버스를 탄다고 가정. 학생/일반인으로 구분 // 일반인: 20세로 가정 /*int age = 25; // if (조건) { ... } else { ... } if (age >= 20) { printf("일반인입니다.\n"); } else { printf("학생입니다.\n"); }*/ // 초등(8~13), 중등(14~16), 고등(17~19) 구분? // if / else if / else /*int age = 25; if (age >= 8 && age = 14 && age = 17 && age
#include int main_printfscanf_(void) { // 정수형 변수에 대한 예제 /*int age = 12; printf("%d\n", age); age = 13; printf("%d\n", age);*/ // 실수형 변수에 대한 예제 /*float f = 46.5f; printf("%.2f\n", f); double d = 4.428; printf("%.2lf\n", d);*/ /*const int YEAR = 2000; // 상수의 개념 printf("태어난 년도 : %d\n", YEAR);*/ //YEAR = 2001; // printf // 연산 //int add = 3 + 7; // 10 //printf("3 + 7 = %d\n", add); //printf("%d +..