일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Tequila
- 최저가
- 웹페이지
- Python
- 게임
- HTTP
- 웹크롤링
- Game
- 상태코드
- 파싱
- class
- twilio
- API
- Sheety
- 오류
- 쉬티
- 부트스트랩
- 프로그램
- phython
- 프로젝트
- ndarray
- HTML
- 계산기
- 유데미
- udemy
- Pygame
- SMTP
- 파이썬
- API플랫폼
- Endpoint
Archives
- Today
- Total
데이터 분석가
ValueError: Multi-dimensional indexing 본문
seaborn >> histplot 실행 시 오류코드
이 문제는 seaborn의 histplot 함수가 데이터를 처리하는 방법과 관련이 있다.
ValueError: Multi-dimensional indexing (e.g. `obj[:, None]`) is no longer supported. Convert to a numpy array before indexing instead.
Output is truncated. View as a scrollable element or open in a text editor. Adjust cell output settings...
해결방법:
# 잔차의 히스토그램
plt.figure(figsize=(10, 6))
plt.hist(residuals, bins=30, density=True, alpha=0.7, color='blue')
# KDE를 추가하려면
from scipy.stats import gaussian_kde
density = gaussian_kde(residuals)
xs = np.linspace(min(residuals), max(residuals), 1000)
plt.plot(xs, density(xs), color='red')
plt.title('Residuals Histogram')
plt.xlabel('Residuals')
plt.ylabel('Density')
plt.show()
'파이썬 (python) 에러코드 모음' 카테고리의 다른 글
ValueError: Multi-dimensional indexing (0) | 2023.08.24 |
---|---|
ValueError: could not convert string to float: '2013-01-01' (0) | 2023.08.22 |
폰트 깨지는 문제 해결 (0) | 2023.08.20 |
TypeError: 'int' object is not iterable (0) | 2023.02.14 |
Comments