일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CSS
- js
- single cell
- ngs
- MACS2
- julia
- pandas
- 싱글셀 분석
- 비타민 C
- drug development
- javascript
- single cell analysis
- single cell rnaseq
- CUTandRUN
- ChIPseq
- DataFrame
- scRNAseq
- Batch effect
- Bioinformatics
- Git
- PYTHON
- github
- drug muggers
- matplotlib
- scRNAseq analysis
- EdgeR
- cellranger
- python matplotlib
- HTML
- CUT&RUN
- Today
- Total
목록분류 전체보기 (216)
바이오 대표
Matplotlib Pie Chart 파이차트 정리 1~ 7 에서 python matplotlib.pyplot 의 전반적인 설명과 plotting plt.plot( ), marker, line, label, grid, subplot, scatter, bars plot 에 대해서 살펴보았습니다. 이번 글에서는 해당 라이브러리로 Pie chart 파이차트 에 대한 설명합니다. pie chart plt.pie( ) argument labels labels decimal autopct = '%.1f%%' 예시, 소숫점 한자리 까지 표현 start angle startangle 특정범주 분리해서 보이기 explode legend plt.legend( ) Pie chart 파이 차트 그리기 Pie chart (파이..
Matplotlib Histogram 정리 1~ 7 에서 python matplotlib.pyplot 의 전반적인 설명과 plotting plt.plot( ), marker, line, label, grid, subplot, scatter, bar plot 에 대해서 살펴보았습니다. 이번 글에서는 해당 라이브러리로 Histogram 즉 히스토그램 그래프에 대한 설명합니다. histogram plt.hist( ) legend label, plt.legend(loc=' ') argument bins label label cumulative Histogram 그래프 그리기 Histogram은 보통 array를 구간을 나누어, 한눈에 보고 싶을때 막대로 개체의 양을 나타낸 그래프입니다. plt.hist(arr..
Matplotlib Bars Plot 정리 1~ 6 에서 python matplotlib.pyplot 의 전반적인 설명과 plotting plt.plot( ), marker, line, label, grid, subplot, scatter 에 대해서 살펴보았습니다. 이번 글에서는 해당 라이브러리로 Bars plot 즉 막대 그래프에 대한 설명합니다. bar plt.bar( ) horizontal bar plt.barh( ) bar color bar width bar height Bars plot 막대 그래프 그리기 Bars plot은 우리가 흔히 데이터 변수의 양 (quantity) 를 한눈에 보고 싶을때 막대로 개체의 양을 나타낸 그래프입니다. 그래서 카테고리데이터를 관찰할때도 많이 사용됩니다. plt..
Matplotlib Scatter 정리 1~ 5 에서 python matplotlib.pyplot 의 전반적인 설명과 plotting plt.plot( ), marker, line, label, grid, subplot에 대해서 살펴보았습니다. 이번 글에서는 해당 라이브러리로 그래프의 Scatter 즉 산점도 그래프에 대한 설명합니다. scatter plt.scatter( ) colormap cmap='viridis' colormap 보이기 plt.colorbar( ) Scatter Plot 산점도 그래프 그리기 scatter plot은 데이터를 관찰 할 때, 전체적인 분포도를 보기 위하여 각 개체를 점으로 표시하여 나타낸 그래프입니다. 보통 두 개의 변수의 동시분포를 볼 수 있습니다. (두 개 이상도 ..