일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- scRNAseq analysis
- scRNAseq
- CUTandRUN
- CUT&RUN
- cellranger
- pandas
- Bioinformatics
- MACS2
- single cell rnaseq
- 싱글셀 분석
- EdgeR
- HTML
- javascript
- single cell analysis
- DataFrame
- Batch effect
- Git
- 비타민 C
- ChIPseq
- python matplotlib
- PYTHON
- drug muggers
- single cell
- julia
- matplotlib
- js
- CSS
- drug development
- github
- ngs
Archives
- Today
- Total
목록LOC (1)
바이오 대표

Python 을 이용해서 Dataframe 의 특정 rows/ columns 을 뽑아내려고 할때 보통, df.iloc[ ] 이나 df.loc[ ] 을 많이 사용한다. iloc[row, column] : index 이용 # iloc : index location 이라 외움 굿 loc[row, column] : label 이용 예시) .iloc[rows, columns] .loc[rows, columns] # 아래 예시는 .loc[ ] 을 사용하였다. 그래서 data_.loc[0:5, :] 는 row name 이 0~5 이기때문에 index와 다르게 row index 5 도 포함 행/열이 아닌 특정 값을 뽑아내고 싶다면 원하는 행(..
Python/dataframe (pandas)
2022. 2. 5. 11:26