일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- drug muggers
- github
- python matplotlib
- 싱글셀 분석
- MACS2
- Bioinformatics
- single cell rnaseq
- DataFrame
- scRNAseq
- CSS
- HTML
- 비타민 C
- CUTandRUN
- EdgeR
- matplotlib
- pandas
- single cell analysis
- PYTHON
- cellranger
- ChIPseq
- drug development
- scRNAseq analysis
- js
- Batch effect
- javascript
- ngs
- julia
- single cell
- Git
- CUT&RUN
- Today
- Total
목록Front_end (23)
바이오 대표
Array.splice( ) Array.slice( ) Array.concat( ) Array.join( ) Array.split( ) Array.splice(n, m) : n 번째부터 m 만큼 요소 지움 Array.splice (n, m, x) : 요소 지우고 x 추가 Array.splice(n, 0, x): 요소 안지우고 x 추가 * Array.splice( ) -> 삭제된 요소를 반환 Array.slice(n, m): n 부터 m 까지 반환 Array.slice( ): array 전체 복사 Array.concat(arr2,arr3,,): 합쳐서 새 배열 반환 a..
Array (배열) : 배열은 문자 뿐만 아니라 숫자, 객체, 함수 등도 포함 할 수 있다 // array example let info = [ '예지' // string 1, // number true, // boolean { name: 'Jinny', //object age: 25, }, function(){// function console.log('fxck'); } ]; Array.length : 배열 길이 Array.push( ) : 배열 끝에 추가 Array.pop( ) : 배열 끝 요소 제거 Array.unshift( ) : 배열 앞에 추가 Array.shift( ) : 배열 앞에 제거
Object.assign( ) : 객체 복제 Object.keys( ) : 키를 배열로 반환 Object.values( ) : 값을 배열로 반환 Object.entries( ) : 키/값 배열로 반환 Object.fromEntries( ) : 배열을 객체로 Object.assign({}, a) = a 를 {} 에 복제 Object.assign({}, a, b) = a 와 b 를 {} 에 복제 = a 와 b 병합 const user = { name: 'yeji', age: 25, gender: 'female', } const newUser = object.assign({}, user); Object.keys(user); //["name", "age, "gender"] Ob..
Object(객체)는 boolen, number,strin, undefined를 제외한 나머지라 할 수 있다 const ObjectName = { key : value, } const superman = { name: 'yeji' age: 25, } 객체 안에 함수가 들어 갈 수 있고 이 함수를 method 라 칭한다 const ObjectName = { key : value, method: function(){ } } * ObjectName.method( ); 로 불러낼 수 있다. * method 안에서 this를 이용할 수 있다 const superman = { name: 'yeji' age: 25, sayHello: function(){ console.log(`Hi, ..