본문 바로가기

분류 전체보기175

시작하세요 하둡프로그래밍 3장 3장 java 예제eclipse 에서 maven : goal package 실행해서 jar 파일 생성하기centos에 복사하고, /home/hadoop/hadoop-1.2.1 > ./bin/hadoop jar hadoop-beginner-examples-1.0.jar wikibooks.hadoop.chapter03.SingleFileWriteRead input.txt helelel,fdsfsdf/home/hadoop/hadoop-1.2.1 > ./bin/hadoop fs -ls input* 2016. 12. 6.
시작하세요 하둡 프로그래밍 - 정오표 개정2판 2016년 05월 12일------------------------------------------------------------------------------------------------------89p 위에서 15번째 줄,로컬 파일 시스템으로 파일이 복사된 후 소스 경로의-> 목적지 경로로 파일이 복사된 후 로컬 파일 시스템의 [소스 디렉터리][파일...][로컬 디렉터리][파일]-> [로컬 디렉터리][파일...][목적지 디렉터리][파일] 2016. 12. 5.
설치과정 - 시작하세요 하둡프로그래밍 2장 블로그 : virtualbox : http://ym7596.blog.me/220752672498centos6 : http://itgroovy.tistory.com/513 1. centos 6.8 다운로드http://ftp.daumkakao.com/centos/6.8/isos/x86_64/>CentOS-6.8-x86_64-bin-DVD1to2.torrent2016-05-25 19:01229K 를 다운받는다. dvd 2개 파일을 받지만 실제로 사용하는 것은 1개뿐인듯. (CentOS-6.8-x86_64-bin-DVD1.iso) 2, virtualbox 에 4개 장비 설치 (일단 2개만 해보자)메인PC : 8코어(하이퍼스레딩), 1테라, 16기가4대 각각 1코어, 128G 하드, 2G메모리 ----------.. 2016. 12. 4.
캐글 타이타닉https://www.kaggle.com/c/titanic순위보기https://www.kaggle.com/c/titanic/leaderboard 2016. 12. 1.
plot(mtcars) plot의 위력!!plot(mtcars) 2016. 11. 29.
R 통계 - 기본 기능(탐색적 분석 mtcars #통계 head(mtcars, 10) summary(mtcars) class(mtcars) str(mtcars) table(mtcars) #Error in table(mtcars) : attempt to make a table with >= 2^31 elements table(mtcars$cyl) #그래프 hist(mtcars$cyl) plot(mtcars$wt, mtcars$mpg) library(ggplot2) qplot(wt, mpg, data=mtcars, shape=as.factor(cyl)) #shape qplot(wt, mpg, data=mtcars, size=cyl) #size #factor 범주형 데이터로 변환하기 a 2016. 11. 29.
R 개요 1 데이터 수집(읽고, 쓰기)2 데이터 살펴보기(조회-행,열,특정), 기본 summary3 데이터 가공(일반가공, join 가공)4 데이터 시각화(단일 속성, 다속성) 2016. 11. 19.
R 자료 from 헬로 데이터 과학 2장 - 데이터 준비 단계 탐색적 분석 단계 통계적 추론 및 기계학습 단계 결과 구현 및 제품화 결과 시각화 및 공유 R : 니터(Knitr) 파이썬 : 주피터(Jupyter) - ipython notebook ------------------------------------------------------------------------------------------------ *사용된 함수(mtcars) mtcars #통계 head(mtcars, 10) summary(mtcars) class(mtcars) str(mtcars) table(mtcars) #Error in table(mtcars) : attempt to make a table with >= 2^31 elements table(mtcar.. 2016. 11. 19.