seaborn

Data Science/Dacon

[분류] 유전체 정보 품종 분류 AI 경진대회 (1) - 간단한 EDA

유전체 정보 품종 분류 AI 경진대회 https://dacon.io/competitions/official/236035/data In [1]: import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns import warnings import random In [2]: pd.read_csv('/content/snp_info.csv') Out[2]: SNP_id name chrom cm pos 0 SNP_01 BTA-19852-no-rs 2 67.05460 42986890 1 SNP_02 ARS-USMARC-Parent-DQ647190-rs29013632 6 31.15670 13897068 2 SNP..

Python/seaborn, matplotlib

matplotlib, seaborn에서 한글 폰트 사용하기

예제 데이터는 데이콘 대회 중 '감귤 착과량 예측 AI경진대회'의 train 데이터셋 이용 In [1]: import pandas as pd gyul_train_df = pd.read_csv('./jeju_mandarin/train.csv') In [2]: gyul_growth = gyul_train_df[['착과량(int)', '수고(m)', '수관폭1(min)', '수관폭2(max)', '수관폭평균']] gyul_growth Out[2]: 착과량(int) 수고(m) 수관폭1(min) 수관폭2(max) 수관폭평균 0 692 275.0 287.0 292.0 289.5 1 534 293.0 284.0 336.0 310.0 2 634 300.0 392.0 450.0 421.0 3 639 289.0 368.0..

Python/seaborn, matplotlib

seaborn으로 기본 그래프 그리기

대표적인 plot들을 소개하겠음.. 경향성 표현하는 그래프 라이브러리와 데이터 불러오고, 시각화 위한 세팅하기 import seaborn as sns sns.set_theme(style='whitegrid') penguins = sns.load_dataset("penguins").dropna() penguins lineplot - 특정 데이터를 x, y로 표시하여 관계를 확인할 수 있는 선 그래프 - 수치형 지표들 간의 경향을 파악할 때 많이 사용한다 sns.lineplot(data=penguins, x = 'body_mass_g', y = 'bill_length_mm', ci = None, #ci = confidential interval 신뢰구간, 오차범위 표시해줌 hue = "species", #h..

얆생
'seaborn' 태그의 글 목록