일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 안드로이드 배경화면
- 안드로이드 개발 2.0 강좌
- 안드로이드 개발
- sky 시리우스폰
- 안드로이드
- 안드로이드 2.0 개발
- 구글 안드로이드
- 인기있는 블로그 만들기
- objective-c
- 안드로이드2.0개발
- 안드로이드폰
- 안드로이드 개발 2.0
- SKY 시리우스
- 하루한마디영어
- 하루 한마디 영어
- 구글 안드로이드 개발
- 안드로이드개발
- 스카이 안드로이드폰 시리우스
- 스마트폰 배경화면
- 안드로이드 개발 강좌
- 아이폰 바탕화면
- 영어
- 안드로이드2.0
- Form Stuff
- 안드로이드 바탕화면
- MapView
- 스카이 안드로이드폰 시리우스 K양 동영상
- 아이폰 배경화면
- 구글안드로이드
- android
- Today
- Total
목록TIS_2020 (169)
moozi
gbsb.tistory.com/9
RHadoop 설치를 위해서 R을설치할 때 P.113에서 R버젼을 R-3.6.1로 바꾸어 설치한다. p.115 configure 과정에서 오류발생. => sudo apt install libcurl4-openssl-dev 설치필요 RHadoop설치시 P.131 rmr2가 의존하는 패키지 설치시 에러가 남. install.packages("RJSONIO",dependencies=TRUE,respos="http://cran.rstudio.com") 형식으로 하나씩 설치. 패키지설치시 에러가 계속 발생하나 위와같이 하나씩 해결해서 설치성공. => R버젼에 따른 패키지 호환성 문제 심각.
1. 파이참 실행화면 아랫부분에서 'Terminal'탭 선택 2. pip install lxml 형식으로 실행
import sys args = sys.argv[1:] result=0 print(args[0]) if args[0]=="add": for value in args: if value in ("add","mul"): continue result=result+int(value) elif args[0]=="mul": result=1 for value in args: if value in ("add","mul"): continue result=result*int(value) print(result) 실행문 python calculator.py add 10 20 30 python calculator.py mul 10 20 30
flipdata.tistory.com/35
deafjwhong.tistory.com/84?category=779926
blog.naver.com/da2250/222058699618
newly0513.tistory.com/3?category=794595
Board Register Title Content Writer Submit Reset File Attach
hadoop-streaming을 이용한 python사용 blog.acronym.co.kr/606
import csv f = open('gender.csv') data = csv.reader(f) size = [[],[]] name = input('찾고 싶은 지역의 이름을 알려주세요 : ') for row in data : if name in row[0] : m = 0 f = 0 for i in range(101) : m = int(row[i+3]) # 3 ~ 103번까지 데이터 더하기 f = int(row[i+106]) # 106 ~ 206번까지 데이터 더하기 size[0].append(m) # 남성 합계 데이터 리스트에 추가 size[1].append(f) # 여성 합계 데이터 리스트에 추가 break print(size) import matplotlib.pyplot as plt plt.rc('f..
import csv import matplotlib.pyplot as plt f = open('seoul.csv') data = csv.reader(f) next(data) aug = [] for row in data: month = row[0].split('-')[1] # -로 구분된 값 중 2번째 값을 month에 저장 if row[-1] != '': if month=='08': aug.append(float(row[-1])) plt.hist(aug, bins=100, color='r') # 히스토그램으로 나타내기 plt.show()
통계기초정리 drhongdatanote.tistory.com/24
scores=[] class Student: def __init__(self, name, english, math, science): self.name = name self.english = english self.math=math self.science=science def calcAvg(self): total = int(self.english) + int(self.math) + int(self.science) self.avg = round(total / 3, 2) while True: print("===============") print("등록 : 1 - 등록중 종료 :quit") print("목록 : 2") print("종료 : 0") print("===============") menu=inpu..
1.하둡설치 blog.naver.com/PostView.nhn?blogId=stiff_soul&logNo=221725547075&categoryNo=24&parentCategoryNo=0 2.centos한글입력 webhack.dynu.net/tip/20200120.001