
table.show(int)

table.drop(칼럼명)

table.sort(칼럼명,descending=bool)

table.select(칼럼명 or idx)


table.where(칼럼명,조건)


테이블에서 원하는 칼럼에서 조건에 맞는 친구들만 뽑아낸다.
조건

table.num_rows

table.num_columns

table.labels

table.relabeled(칼럼명,바꿀 이름)

table.take(idx)

범위를 지정해서 row를 가져올 수도 있다.

take은 row, select는 column을 가져온다.
디비로보면 select와 프로젝트라고 생각하면됨.
table.with_column(칼럼명,값들=array)
table.with_columns(칼럼명,값들,칼럼명,값들..)
table.with_columns(칼럼명,값들).with_columns(칼럼명,값들)
table.exclude(없앨 행의 idx)
