incastle의 콩나물
데이터 마이닝 진창호 교수님 (19-1) 학습 목표 - Data type, Qualityrk Data 분석 시에 야기할 수 있는 문제의 예시와 해결 방안 - Attribute가 가질 수 있는 value의 종류를 나열하고 예시 - Data attribute에 value를 할당하는 measuerment scale의 기능을 설명, value별로 예시 - attribute value 4가지 속성 구분, 각 속성에 따란 measuerment scale 결정 - Discrete attribute와 continuous attribute를 구분, 예시 - Asymmetric(비대칭적) attribute의 예시 - 동일한 attribute에도 상황에 따라 asymmetric attribute에 1과 0을 할당이 달라질 ..
데이터 마이닝 진창호 교수님 (19-1) Why Mine Data? Commercial Viewpoint - 많은 양의 데이터가 수집되고 저장되고 있다. - 컴퓨터의 가격이 갈수록 저렴하고 컴퓨팅 파워가 강력해지고 있다. - competitive pressure is strong(더 잘 제공하자! 커스터마이즈 하자!) Why Mine Data? Scientific Viewpoint - 데이터가 더 빨리, 많이 수집되고 있다. - 기존의 기술로는 raw data 처리가 힘들다. Data, information, Knowledge - Data : 관측되는 raw fact들 - Information : raw data로부터 얻어지는 유의미한 패턴 >> 자주 나오는 이야기 : 전화번호는 Information이지..
1. 후보키 문제 relation=[["100","ryan","music","2"], ["200","apeach","math","2"], ["300","tube","computer","3"], ["400","con","computer","4"], ["500","muzi","music","3"], ["600","apeach","music","2"]] 내가 고민했던 건 '열'이라는 정보를 어떻게 뽑지? numpy를 안쓰고 어떻게 하지? for v in relation: for i, item in enumerate(v): print(i, item) print('------') 0 100 1 ryan 2 music 3 2 ------ 0 200 1 apeach 2 math 3 2 ------ 0 300 1 tu..
데이터베이스 이론 및 실습 정재윤 교수님 수업 (19-1) SQL Defined - SQL is comprised of >> A data definition language (DDL) : used to define database structures >> A data manipulation language (DML) : data definition and updating SQL for Data definition - Create : To create database objects - Alter : To modify the structure and/or characteristics of database objects - Drop : to delete database objects - 제약 조건으로 PRIM..