일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- unable to auto-detect email address
- 생성형 ai의 역사
- gitcommands
- gitpull
- 언어모델
- 항해99
- deepseek
- ADsP
- author identity unknown
- adsp공부법
- 딥시크
- AI 역사
- 티스토리챌린지
- please tell me who you are
- 오블완
- ai 개발자
- 코딩테스트준비
- 개발자취업
- 프로그래머스 피로도
- gitpush
- Til
- 99클럽
- 알고리즘
- 데이터분석자격증
- BFS
- 비전공자ADSP
- 완전탐색
- 너비우선탐색
- 이진탐색
- 생성형 AI
- Today
- Total
목록전체 글 (23)
Thinking Box

Let's practice drawing different types plots using Seaborn library. Violin plots Violin plots are handy when you want to visualize the distribution of numeric data across different categories. 1. Import Libraries You need seaborn for creating the plots, and matplotlib will be optionally used to customize the plots further. Let's import both libraries. import seaborn as sns import matplotlib.pypl..

[ matplotlib 을 이용해서 그래프 그리기 ] 데이터셋 불러오기 먼저 seaborn 라이브러리에 내장되어 있는 tips 데이터셋을 불러온다. 그리고 tips에 어떤 데이터가 들어있는지 확인해보았다. import seaborn as sns tips = sns.load_dataset('tips') print(tips.head()) print(type(tips)) 아래와 같은 데이터가 들어있고, dtype은 data frame 이다. 7개의 column이 있음을 확인할 수 있다. 히스토그램 - 단변량 그래프 가장 단순한 형태의 변수가 하나인 단변량 그래프를 그려보자. 단변량 히스토그램은 간단하기 때문에 추가적인 설명은 생략한다. import matplotlib.pyplot as plt %matplotl..

교재를 실습한 내용을 정리해보았다. *목차* 4장 | 그래프 그리기 4-1. 데이터 시각화가 필요한 이유 오늘의 실습에 사용될 앤스콤 데이터 집합은 seaborn 라이브러리에 포함되어 있다. 데이터 집합 불러오기 import seaborn as sns anscombe = sns.load_dataset('anscombe') matplotlib 라이브러리 불러오기 그래프로 시각화하기 위해서 먼저 라이브러리를 불러와야 한다. %matplotlib notebook import matplotlib.pyplot as plt 이제 본격적으로 그래프를 그려보면서 시각화를 어떻게 할 수 있는지 실습해보자. 📌 plot method : 선 그래프와 점 그래프를 그릴 때 사용한다. 첫 번째 데이터 그룹 (데이터 값=I ) ..

교재를 스터디 하면서 판다스의 기본이 되는 핵심 내용들을 정리해보았다. *목차* 2장 | 판다스 시작하기 3장 | 판다스 데이터프레임과 시리즈 [기초 메서드와 속성] - read.csv method : 기본적으로 쉼표(,)로 열이 구분된 데이터를 불러옴. 데이터 집합을 읽어 들여와 data frame 이라는 자료형으로 반환함. *쉼표가 아닌 tab으로 열이 구분된 경우, read_csv 메서드 호출 시 sep='\t' 라고 지정해줘야 함. - head method : data frame 에서 가장 앞에 있는 5개 행을 출력함. data frame에 어떤 데이터가 있는지 확인하는 용도로 good. +) tail method : 가장 마지막 5개 행 출력. - type method : 자료형을 출력해줌. 자..

Using GitHub, you can easily manage your code and collaborate with other people without having to worry about losing your files. Let's find out the whole process. 1. Download Git. 👉🏻 Git Download Site https://git-scm.com/download/win Git - Downloading Package Download for Windows Click here to download the latest (2.44.0) 32-bit version of Git for Windows. This is the most recent maintained buil..