공부한 것 정리/데이터 가공(3)
-
[texture] 3D obj에서 segmenation 기반 texture stiching github
GitHub - thmoa/semantic_human_texture_stitching: This repository contains texture stitching code corresponding to the paper Detailed Human Avatars from Monocular Video.
2022.09.29 -
[mySQL] 프로그래머스 고양이와 개는 몇 마리 있을까
SELECT ANIMAL_TYPE, COUNT(*) FROM ANIMAL_INS GROUP BY ANIMAL_TYPE ORDER BY ANIMAL_TYPE; type이 고양이, 강아지 두개밖에 없어서 그냥 groupby해도 결과는 출력되는데 통과가 안됨 고양이를 개보다 먼저 조회해주세요. 조건 때문에 ORDER BY 붙여줘야함
2022.02.01 -
[데이터프레임] 시리즈에서 최댓값, 최솟값 추출
A라는 시리즈의 최댓값 구하기 A.max(axis=0) 최솟값 구하기 A.min(axis=0) 데이터프레임에서 하나의 열만 추출해 시리즈로 만들고 사용하면 편리
2020.12.04