일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 베이지안
- 도시인공지능
- 공간데이터
- 서울
- digitalgeography
- 베이지안뉴럴네트워크
- 그래프이론
- naver
- pandas
- 그래프색상
- connectivity
- 파이썬
- 핫플레이스
- 도시공간분석
- digital geography
- spacesyntax
- 도시설계
- 스마트시티
- 웹크롤링
- multinomiallogitregression
- 서울데이터
- Python
- platformurbanism
- QGIS
- 네이버
- 도시계획
- graphtheory
- postgres
- SQL
- 공간분석
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 베이지안
- 도시인공지능
- 공간데이터
- 서울
- digitalgeography
- 베이지안뉴럴네트워크
- 그래프이론
- naver
- pandas
- 그래프색상
- connectivity
- 파이썬
- 핫플레이스
- 도시공간분석
- digital geography
- spacesyntax
- 도시설계
- 스마트시티
- 웹크롤링
- multinomiallogitregression
- 서울데이터
- Python
- platformurbanism
- QGIS
- 네이버
- 도시계획
- graphtheory
- postgres
- SQL
- 공간분석
- Today
- Total
목록2024/11 (10)
이언배 연구노트

네이버 API 검색이 끝났다. import pandas as pdfrom sqlalchemy import create_enginefrom glob import globfilenames = glob('./api_crawl_1/*.csv')dfs = []for file in filenames: t = pd.read_csv(file) dfs.append(t)filenames = glob('./api_crawl_2/*.csv')for file in filenames: t = pd.read_csv(file) dfs.append(t)df_concat = pd.concat(dfs)engine = create_engine('postgresql+psycopg2://???:???@???:5432/??..

그래프를 종이에 그릴 수 있겠니? 선이 겹치면 헷갈리잖아. 규칙을 몇 개 정해줄게. DefinitionDrawing a multigraph두 edge 를 crossing: 공통의 internal point 가진다는 것emdgedding: crossing 이 없는 drawingplanar: multigraph 가 plane 에 embed 가능plane multigraph: multigraph 를 planar embedding 하게 그린 예시"안겹치게 잘 그려봐" Proposition$K_5$ 랑 $K_{3, 3}$ 은 planar 그래프가 아니다.5개짜리 complete graph 랑 3대3 complete bigraph 는 안겹치고는 못 그린다.$\textit{Proof}$$C$ 라는 spanning c..