목록Programming (97)
59doit

Python 1. C:드라이브에 OracleTest 폴더 생성 2. OracleTest폴더에 driver ojdbc6 저장 ojdbc6 위치 : # C:\oraclexe\app\oracle\product\11.2.0\server\jdbc\lib 3. SQL developer에서 scott계정으로 table 생성 ID : sys / PW : 1234 create table py_table( id varchar(50) primary key, pass varchar(30) not null, name varchar(25) not null, age number(2) ); insert into test_table values('hong', '1234', '홍길동', 35); insert into test_table..

R version 3.6.3 1. C:드라이브에 OracleTest 폴더 생성 2. OracleTest폴더에 driver ojdbc6 저장 ojdbc6 위치 : # C:\oraclexe\app\oracle\product\11.2.0\server\jdbc\lib 3. SQL developer에서 scott계정으로 table 생성 ID : sys / PW : 1234 ID : scott / PW : tiger create table test_table( id varchar(50) primary key, pass varchar(30) not null, name varchar(25) not null, age number(2) ); insert into test_table values('hong', '1234',..
표본추출 샘플링(sampling): 정제한 데이터셋에서 표본으로 사용할 데이터를 추출 (1) 정제 데이터 저장 ex ) 정제된 데이터 저장 print(user_pay_data) write.csv(user_pay_data, "cleanData.csv", quote = F, row.names = F) data