반응형 분류 전체보기462 [R 프로그래밍] 크로스집계, 히스토그램 실습을 통한 데이터 분석 #MAU 지표 뽑기 - MAU R언어 표기 데이터 내용 log_month 로그인한 월 install_month 이용시작 월 user_id 유저id payment 과금액 lv 레벨대(10단위) country 국가 region 권역 device_type 디바이스 정보 app_name 앱이름 #WAU 지표 뽑기 - WAU R언어 표기 데이터 내용 log_week 로그인한 주 install_week 이용시작 주 user_id 유저id payment 과금액 lv 레벨대(10단위) country 국가 region 권역 device_type 디바이스정보 app_name 앱이름 #DAU 지표 뽑기 - DAU R언어 표기 데이터 내용 log_date 로그인할 날 user_id 유저id Lv 레벨대 2017. 2. 10. [R 프로그래밍] SQL 데이터를 통한 R프로그래밍 실습 [SQL] 데이터 수집용-- DAUselect cast(logtime as date) 'date', 'IK' AS 'app_name', userno 'user_id' from dbo.LoginLog with (nolock)where cast(logtime as date) between '2016-01-01' and '2016-12-31'andlogtype=0group bycast(logtime as date), userno -- DPUselectcast(logtime as date) 'date', 'IK' AS 'app_name', userno 'user_id', sum(case when currency='USD' then convert(float, itemprice) * 1100 else convert.. 2017. 2. 9. [R 프로그래밍] 머신 러닝 # 중간 데이터 읽기용 함수 작성library(plyr)library(foreach)readActionHourly 2017. 2. 9. [R 프로그래밍] 결정트리 분석 # 데이터를 읽어들이는 함수 작성library(plyr)library(foreach)# 이용시작일 데이터를 읽어들이는 함수readInstall 2017. 2. 9. 이전 1 ··· 98 99 100 101 102 103 104 ··· 116 다음 반응형