일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- scRNAseq
- CUTandRUN
- python matplotlib
- js
- EdgeR
- ChIPseq
- 비타민 C
- julia
- github
- drug development
- pandas
- Batch effect
- CSS
- HTML
- single cell analysis
- MACS2
- 싱글셀 분석
- cellranger
- drug muggers
- Bioinformatics
- single cell
- PYTHON
- matplotlib
- javascript
- single cell rnaseq
- scRNAseq analysis
- DataFrame
- CUT&RUN
- ngs
- Git
- Today
- Total
목록Python (29)
바이오 대표
Python package “Click: command line interface creation kit“ Click 패키지는 command line interfaces를 이쁘게 작성할 수 있게 도와주는 툴이다. 또한 CLI API 에서 생기는 문제들을 예방하고 보다 빠르고 재미있게 코드를 짤수있도록 도와주고 크게 3가지 장점이 있다. arbitrary nesting of commands help page 를 자동생성 supports lazy loading of subcommands at runtime # test.py 코드 import click @click.command() @click.option('--count', default=1, help='Number of greetings.') # help..
Matplotlib Box plot 박스 플롯 정리 1~ 10 에서 python matplotlib.pyplot 의 전반적인 설명과 plotting plt.plot( ), marker, line, label, grid, subplot, scatter, bars plot, pie chart, heatmap 에 대해서 살펴보았습니다. 이번 글에서는 해당 라이브러리로 Box plot 박스플롯 에 대한 설명합니다. box plot plt.boxplot( ) argument notched notch = True whis 조절 whis = number 수평 박스 vert = False Box plot 박스 플롯 그리기 Box plot (박스 플롯)은 Box-whisker plot 이라고도 불리며, 수치 데이터를..
Matplotlib Heatmap 히트맵 정리 1~ 8 에서 python matplotlib.pyplot 의 전반적인 설명과 plotting plt.plot( ), marker, line, label, grid, subplot, scatter, bars plot, pie chart 에 대해서 살펴보았습니다. 이번 글에서는 해당 라이브러리로 Heatmap 히트맵 에 대한 설명합니다. histogram plt.matshow( ) or plt.imshow( ) color bar plt.colorbar( ) color limit plt.clim( , ) colar map plt.get_camp('') Heatmap 히트맵 그리기 Heatmap 히트맵은 숫자 데이터를 분포를 색상을 이용해서 시각화 한 것이다. 나..
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 (파이..