Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- node.js
- ubuntu
- 함수
- 라즈베리파이
- Unity
- PyQt
- swift
- mssql
- GIT
- python
- Linux
- 맛집
- 리눅스
- pandas
- Excel
- 다이어트
- PyQt5
- ASP
- flutter
- PER
- MySQL
- MS-SQL
- 유니티
- sqlite
- tensorflow
- javascript
- 날짜
- IOS
- port
- urllib
Archives
아미(아름다운미소)
pandas null 체크 본문
특정컬럼 null 체크
import pandas as pd
# 샘플 데이터프레임 생성
data = {
'A': [1, 2, None, 4],
'B': [None, 2, 3, 4],
'C': [1, 2, 3, 4]
}
df = pd.DataFrame(data)
# 특정 컬럼(B)에 대해 null 값 체크
null_check_B = df['B'].isnull()
print(null_check_B)
# 특정 컬럼(B)의 null 값 개수 세기
null_count_B = df['B'].isnull().sum()
print(f"'B' 컬럼의 null 값 개수: {null_count_B}")
# 특정 컬럼(B)에 null 값이 있는 행 필터링
rows_with_null_B = df[df['B'].isnull()]
print(rows_with_null_B)
import pandas as pd
# 샘플 데이터프레임 생성
data = {
'A': [1, 2, None, 4],
'B': [None, 2, 3, 4],
'C': [1, 2, 3, 4]
}
df = pd.DataFrame(data)
# null 값 체크
null_check = df.isnull()
print(null_check)
# null 값의 개수 세기
null_counts = df.isnull().sum()
print(null_counts)
# null 값이 있는 행 필터링
rows_with_nulls = df[df.isnull().any(axis=1)]
print(rows_with_nulls)
'랭귀지 > pandas' 카테고리의 다른 글
Pandas df 에서 a컬럼을 distinct 했을때 b컬럼이 true인 c값을 copy해서 b칼럼에 넣어주는예제 (0) | 2024.08.16 |
---|---|
df a,b컬럼에을 groupby했을때 c가 모두 false일때 해당그룹의 d 알파벳이 가장빠른행에 c값을 true로 바꿔준다 (0) | 2024.08.16 |
pandas df a,b컬럼을 groupby 했을때c컬럼의합이 0인경우 d컬럼의 알파벳이 제일빠른행에 c행을 1로바꾸기 (0) | 2024.08.14 |
값채우기 응용 (0) | 2024.08.13 |
pandas 몫 나머지 (0) | 2024.08.13 |
Comments