전체 글 (50) 썸네일형 리스트형 판다스 결측값 제거하기 결측값 처리에는 (현재까지 공부한 바로는) 두 가지가 있다. 1. dropna() - 결측값 지우는 메서드df.dropna() ✔️특징① 디폴트: 결측값이 1개라도 있는 있는 '행' 제거- dropna(how="any"): 결측값이 1개라도 포함되어 있는 행 제거- dropna(how="all"): 행의 모든 값이 결측값인 경우만 행 제거- dropna(axis=1): 결측값이 1개라도 포함되어 있는 열 제거- dropna(how="all", axis=1): 열의 모든 값이 결측값인 경우 열 제거 ② 데이터 프레임 자체를 결측값 제거한 데이터 프레임으로 바꿔주고 싶을 땐 'inplace=True'- df.dropna(inplace=True) 2. drop() - 특정 행/열을 지우는 메서드#특정 행 지.. 총량 + 특정 조건 동시에 집계하기 (SUM(CASE WHEN ...)) 96번 - Monthly Transaction (총량 + 특정 조건 집계하기)Table: TransactionsWrite an SQL query to find for each month and country, the number of transactions and their total amount, the number of approved transactions and their total amount.The query result format is in the following example.Input:Transactions table:+------+---------+----------+--------+------------+| id | country | state | amount | tran.. JOIN | ON절과 WHERE절의 차이점 ❗️JOIN - ON절과 WHERE절의 차이점 ON: join 전에 조건을 필터링WHERE : join 후에 조건을 필터링 on 절에 조건을 추가했을 때select *from THEGLORY t left join THEGLORY2 t2 on t.이름=t2.이름 and t.직업 in ('아나운서', '선생님') **조건은 조인을 하는 테이블, 즉 left join 기준 오른쪽 테이블에만 적용됨! where 절에 조건을 추가했을 때select *from THEGLORY t left join THEGLORY2 t2 on t.이름=t2.이름 where 직업 in ('아나운서', '선생님') 참고 문제https://leetcode.com/problems/average-selling-price/ #ON절 (정답)s.. 이전 1 ··· 9 10 11 12 13 14 15 ··· 17 다음