판다스 (29) 썸네일형 리스트형 [Kaggle] Nexfilx movies and TV shows 데이터 분석 1 (데이터 확인 / 질문) Nexfilx movies and TV shows 데이터셋 분석 분석 목적 : 넷플릭스 컨텐츠 분석으로 트렌드 파악 자료 출처 : https://www.kaggle.com/shivamb/netflix-shows Netflix Movies and TV Shows Listings of movies and tv shows on Netflix - Regularly Updated www.kaggle.com 1. 데이터 확인 # 기본 패키지 불러오기 import math import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns plt.style.use("seaborn") sns.set(font_scale =.. [Kaggle] Zomato Bangalore Restaurants 데이터 분석 3 (EDA / 시각화 / 리뷰) 이전 내용은 아래 글에서 확인 하실 수 있습니다. [Data Analysis/Kaggle] - [Kaggle] Zomato Bangalore Restaurants 데이터 분석 (데이터 확인 / 질문하기) [Kaggle] Zomato Bangalore Restaurants 데이터 분석 (데이터 확인 / 질문하기) Zomato Bangalore Restaurants 데이터 분석 데이터 출처 : https://www.kaggle.com/himanshupoddar/zomato-bangalore-restaurants Zomato Bangalore Restaurants Restaurants of Bengaluru www.kaggle.com 1.. sks8410.tistory.com [Data Analysis/Kag.. [Kaggle] Zomato Bangalore Restaurants 데이터 분석 2 (데이터 전처리) 이전 내용은 아래 글에서 확인 하실 수 있습니다. [Data Analysis/Kaggle] - [Kaggle] Zomato Bangalore Restaurants 데이터 분석 (데이터 확인 / 질문하기) [Kaggle] Zomato Bangalore Restaurants 데이터 분석 (데이터 확인 / 질문하기) Zomato Bangalore Restaurants 데이터 분석 데이터 출처 : https://www.kaggle.com/himanshupoddar/zomato-bangalore-restaurants Zomato Bangalore Restaurants Restaurants of Bengaluru www.kaggle.com 1.. sks8410.tistory.com 3. 데이터 전처리 3-1 불필요.. [Kaggle] Zomato Bangalore Restaurants 데이터 분석 1 (데이터 확인 / 질문하기) Zomato Bangalore Restaurants 데이터 분석 데이터 출처 : https://www.kaggle.com/himanshupoddar/zomato-bangalore-restaurants Zomato Bangalore Restaurants Restaurants of Bengaluru www.kaggle.com 1. 데이터 확인 # 기본 패키지 불러오기 import math import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns plt.style.use("seaborn") sns.set(font_scale = 1) sns.set_style("whitegrid") import plotl.. [기타 데이터] Wine 데이터 분석 2 (EDA / 시각화 / 리뷰) 이전 내용은 아래 글에서 확인 부탁 드리겠습니다. [Data Analysis/기타 데이터] - [기타 데이터] Wine 데이터 분석 (데이터 확인 / 질문하기 / 데이터 전처리) [기타 데이터] Wine 데이터 분석 (데이터 확인 / 질문하기 / 데이터 전처리) Wine 데이터 분석 포르투갈 비노 베르데(Vinho Verde) 지역의 레드와 화이트 와인의 데이터가 들어있는 데이터 셋. 데이터 출처 : https://archive.ics.uci.edu/ml/datasets/wine+quality UCI Mach.. sks8410.tistory.com 4. EDA & Visualization 4-1 각 와인 퀄리티 당 몇개의 와인이 있을까? # 전체 와인의 퀄리티 당 와인 수 wine["quality"].v.. [기타 데이터] Wine 데이터 분석 1 (데이터 확인 / 질문하기 / 데이터 전처리) Wine 데이터 분석 포르투갈 비노 베르데(Vinho Verde) 지역의 레드와 화이트 와인의 데이터가 들어있는 데이터 셋. 데이터 출처 : https://archive.ics.uci.edu/ml/datasets/wine+quality UCI Machine Learning Repository: Wine Quality Data Set Wine Quality Data Set Download: Data Folder, Data Set Description Abstract: Two datasets are included, related to red and white vinho verde wine samples, from the north of Portugal. The goal is to model wine qua.. [기타 데이터] Airbnb NewYork 데이터 분석 3 (EDA / 시각화 / 리뷰) 이전 내용은 아래 글에서 확인 하실 수 있습니다. [Data Analysis/기타 데이터] - [기타 데이터] Airbnb NewYork 데이터 분석 1 (데이터 확인 / 질문) [기타 데이터] Airbnb NewYork 데이터 분석 1 (데이터 확인 / 질문) Airbnb NewYork 데이터 분석 분석 목적 : 2021년 9월 1일자 에어비앤비 뉴욕 데이터 데이터 출처 : http://insideairbnb.com/get-the-data.html Inside Airbnb. Adding data to the debate. Inside Airbnb is a.. sks8410.tistory.com [Data Analysis/기타 데이터] - [기타 데이터] Airbnb NewYork 데이터 분석 2 (데이.. [기타 데이터] Airbnb NewYork 데이터 분석 2 (데이터 전처리) 이 전 내용은 아래 글에서 확인 하실 수 있습니다. [Data Analysis/기타 데이터] - [기타 데이터] Airbnb NewYork 데이터 분석 1 (데이터 확인 / 질문) [기타 데이터] Airbnb NewYork 데이터 분석 1 (데이터 확인 / 질문) Airbnb NewYork 데이터 분석 분석 목적 : 2021년 9월 1일자 에어비앤비 뉴욕 데이터 데이터 출처 : http://insideairbnb.com/get-the-data.html Inside Airbnb. Adding data to the debate. Inside Airbnb is a.. sks8410.tistory.com 3. 데이터 전처리 3-1 중복된 컬럼 확인 bnb.duplicated().sum() 중복된 컬럼은 없습니다.. 이전 1 2 3 4 다음