728x90
반응형

Web 88

Data Mining - prediction mechanism

NoSQL 같은 큰 database에서 반자동 분석하는 과정 -> 머신러닝을 목표로 KDD : knowledge discovery in databases prediction mechanism (based on past history) classification : result for which class regression : result for a new parameter value descriptive pattern association : ( similar relation) - (병의) 원인 감지용으로 사용, 추천시스템이나 cluster : 전염병 감지 등.. Classification Rules ex) 새로운 자동차 보험 신청자가 주어지면, 그 또는 그녀는 낮은 위험, 중간 위험 또는 높은 위험으..

Web/DB & Cloud 2021.12.10

Data Warehouse

repository (archive) of information gathered from multiple sources, stored under a unified schema, at a single site 다양한 곳에서 값을 가져오지만 내부에서 행해지기에 transaction 과정이 필요하지 않음 ETL : Extract-Transform-load Design Issue When and how to gather data Source driven architecture : data source가 warehouse에 새 정보를 전달 (연속적으로, 주기적으로) Destination driven architecture : warehouse가 주기적으로 data source에 새 정보를 요청 Synchronou..

Web/DB & Cloud 2021.12.10

OLAP : Online Analytical Processing

OLAP is for multidimensional data Data = measure attribute + dimension attributes measure attribute 측정한 값, 집계 함수로 계산한 값들 dimension attributes measure attribute를 이용하여 특정 관점을 정의 여기서 quantity는 measure attribute 앞의 3개는 dimension attributes Cross Tabulation (= Pivot-table) item_name과 color에 대해 sales 누적 계수 계산하기 total이 all 키워드가 있는 곳을 가져왔다고 할 수 있음 cross-tabe은 relation(컬럼 간 관계)를 표현할 수 있다 'all' 키워드로 쓰는데 n..

Web/DB & Cloud 2021.12.10

Ranking & Windowing

한 컬럼에 대해 group 별로 묶은 뒤 각 group 내에서 순위를 부여 순위 별로 정렬하려면 ORDER BY 추가 top10처럼 상위권 추출하고 싶다면 LIMIT n 추가 SELECT ID, dept_name, RANK () OVER (PARTITION BY dept_name ORDER BY GPA DESC) AS dept_rank FROM dept_grades ORDER BY dept_name, dept_rank; Type of Ranking RANK : 중복 값들에는 동일 순위로 표시, 중복 순위 다음 값은 중복 개수만큼 떨어진 순위로 출력 SELECT empNo, empName, salary, RANK() OVER (ORDER BY salary DESC) RANK등수 FROM employee; ..

Web/DB & Cloud 2021.12.10

Oracle Storage : Partitioning & Indexing

Oracle에서 데이터베이스는 파일 속 정보로 구성되었으며 instace를 통해 접근 가능하다 instance는 shared memory area로, data file과 상호작용하는 process들의 집합이다 Table Space Oracle Table Spaces System table space : 항상 생성됨. data dictionary로, trigger로, stored procedures로.. User table space : user data 저장 Temporary table space : 정렬 같은 연산용 임시 데이터 Table space

Web/DB & Cloud 2021.12.09

[Angular] ionic Storage 라이브러리 사용하기

powershell에 storage 라이브러리 설치하기 npm install --save @ionic/storage-angular Angular JS 버전으로 ionic을 빌드한 경우 app.module.ts에 설치한 라이브러리 불러오기 import { IonicStorageModule } from '@ionic/storage-angular'; IonicStorageModule.forRoot() // @NgModule의 imports 리스트에 추가로 적기 Item DTO class 구체화하기 cmd에서 ionic g -> class -> classes/item classes폴더의 item.ts 파일 수정 export class Item { id: string; name: string; } 적용하기 - D..

Web/ionic 2021.11.24

Window Powershell 보안 오류

ionic 관련 명령어를 powershell에서 실행하다보면 이 보안 오류를 만나게 될 때 1. 관리자 권한으로 Window Powershell 열기 2. Set-ExecutionPolicy 설치하기 get-help Set-ExecutionPolicy 이미 있다면 아래와 같은 바로 설명 메세지가 출력된다. 3. RemoteSigned로 설정 기본 설정은 Restricted로, 막혀있다. RemoteSigned로 하면 로컬 컴퓨터에서 자신이 생성한 파일 또는 신뢰된 배포자의 서명이 있는 걸로 다운받은 파일만 실행 가능한 정책으로 정해진다. 4. 확인하기 이전에 시도한 ionic 명령어에서 에러가 안 뜨는지 확인하기 VScode powershell에서도 잘 작동한다

Web/ionic 2021.11.23

[Postman] API 테스트 사이트

https://www.postman.com/ Postman API Platform | Sign Up for Free Postman is an API platform for building and using APIs. Postman simplifies each step of the API lifecycle and streamlines collaboration so you can create better APIs—faster. www.postman.com 1. 회원가입 2. Workspaces 생성하기 3. API를 테스트할 탭 생성 4. API 주소 보내기 4-1 . Localhost로 테스트한다면 Postman Desktop Agent을 설치해야한다. 5. Postman Desktop Agent 설치 l..

Web 2021.11.06
728x90
반응형