HeidiSQL을 이용하여서 Database를 만드는 법부터 시작하겠습니다. 그 다음 MariaDB로 csv파일을 쉽게 불러들이는 방법에 대해 설명하고자 합니다. -마우스 우클릭 후 데이터베이스를 누릅니다 -encoding을 위해서 euckr_bin을 선택합니다 -새로 만든 exam_db를 마우스 우클릭한다음에 테이블을 만들어 줍니다 -먼저 새롭게 풀더를 지정해서 데이터 파일을 넣어준 다음에 테이블에 csv형태에 맞춰서 수정합니다 - 풀더안에 있는 csv형태와 똑같은 테이블을 만든 다음에 MariaDB를 이용하여 csv파일을 불러들어오려고 합니다. - MariaDB를 실행시킨 다음에 DB 비밀번호를 입력합니다 - show databases; : 현재 database들을 보여줍니다. - use exam_d..
https://mjs1995.tistory.com/169?category=802136 [python][folium] geojson을 이용한 지도그리기 (1) 원하는 형태의 시군을 이용하여 229개의 시군 지도를 만들어 보려고한다. python을 이용해서 folium 작업을 하기 이전에 geojson 파일을 다운받는 방법부터 설명하려고 한다. www.gisdeveloper.co.kr/?p=2332 대 mjs1995.tistory.com 앞에서 만든 geojson 파일을 가지고 Python folium을 이용한 지도 시각화를 하려고 합니다. import pandas as pd import folium from folium import plugins import matplotlib as mpl import m..
원하는 형태의 시군을 이용하여 229개의 시군 지도를 만들어 보려고한다. python을 이용해서 folium 작업을 하기 이전에 geojson 파일을 다운받는 방법부터 설명하려고 한다. www.gisdeveloper.co.kr/?p=2332 대한민국 최신 행정구역(SHP) 다운로드 – GIS Developer www.gisdeveloper.co.kr 1.위 사이트에서 원하는 형식의 지도 shp 파일을 다운받습니다. https://mapshaper.org/ mapshaper Drop files here or select from a folder Shapefile, GeoJSON, TopoJSON, DBF and CSV files are supported Files can be loose or in a zi..
CNN 영상 자동 모자이크 프로젝트를 진행했었습니다. OpenCV를 통해 모든 얼굴을 모자이크 한 영상에 CNN 분류기를 적용시켜 특정 인물 모자이크 제거했습니다. 학습시킬 사람 1명의 190장 얼굴 이미지와 학습시킬 사람을 제외한 나머지 550장 얼굴 이미지 128×128 픽셀로 변환시킨 다음에 7:3 으로 train_test_split하였습니다. import tensorflow as tf import random import glob import numpy as np import os.path as path import cv2 import matplotlib.pyplot as plt tf.random.set_seed(123) def load_img (img_path): image_path=img_pa..
Self join Self join - SQLZOO Edinburgh Buses Details of the database Looking at the data stops(id, name) route(num, company, pos, stop) stops id name route num company pos stop How many stops are in the database. SELECT COUNT(*) FROM stops Find the id value for the stop 'Craiglockhart sqlzoo.net 1. How many stops are in the database. SELECT COUNT(id) FROM stops 2. Find the id value for the stop ..
Using Null Using Null - SQLZOO teacher id dept name phone mobile 101 1 Shrivell 2753 07986 555 1234 102 1 Throd 2754 07122 555 1920 103 1 Splint 2293 104 Spiregrain 3287 105 2 Cutflower 3212 07996 555 6574 106 Deadyawn 3345 ... dept id name 1 Computing 2 Design 3 Engineering ... Teacher sqlzoo.net 1.NULL, INNER JOIN, LEFT JOIN, RIGHT JOIN SELECT name FROM teacher WHERE dept IS NULL 2. Note the I..
More JOIN operations More JOIN operations - SQLZOO This tutorial introduces the notion of a join. The database consists of three tables movie , actor and casting . movie id title yr director budget gross casting movieid actorid ord More details about the database. 1962 movies List the films where the yr is sqlzoo.net 1.1962 movies SELECT id, title FROM movie WHERE yr=1962 2.When was Citizen Kane..
JOIN The JOIN operation - SQLZOO game id mdate stadium team1 team2 1001 8 June 2012 National Stadium, Warsaw POL GRE 1002 8 June 2012 Stadion Miejski (Wroclaw) RUS CZE 1003 12 June 2012 Stadion Miejski (Wroclaw) GRE CZE 1004 12 June 2012 National Stadium, Warsaw POL RUS ... goal matchid t sqlzoo.net 1. SELECT matchid, player FROM goal WHERE teamid = 'GER' 2. SELECT id,stadium,team1,team2 FROM ga..