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

numpy 의 reshape 함수는 다음과 같이 사용된다 array.reshape(row, column) np.reshape(array, (row, column)) 1,2 차원에서의 변화 쉽게 1차원 배열을 생성하고 reshape 으로 재배열을 해보았다 첫번째는 array.reshape(row, column) 을 이용했고 , 두번째는 np.reshape(array, (row, column)) 를 이용했다. * reshape 에서 -1 은 정해진 행/열이 있으면 거기에 맞춰지는 열/행을 의미한다. 3 차원에서의 변화 1,2 차원에서의 재배열과 같다. 차원만 다르게 해주면 된다.
Python/array (numpy)
2022. 2. 15. 11:30