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