Programming language(8)
-
파이썬의 데이터형
기본 데이터형 파이썬에서 정수는 int 하나뿐이고 크기에도 제한이 없다. 실수는 float 하나뿐이며 소수점 아래 16자리까지 정밀도를 보장한다. 리스트(변경이 가능한 데이터 형식) 다른 프로그래밍 언어의 배열(Array)과 비슷한 개념 # 리스트 생성 1 aa = [10, 20, 30, 40] # 리스트 생성 2 bb = [] for i in range(0, 4): aa.append(0) len(aa) #4 # 리스트 값에 접근하는 방법 1 - 첨자로 접근 aa[-1] # 첨자는 맨 뒤부터 -1 값으로 사용한다 # 리스트 값에 접근하는 방법 2 - 콜론(:) 사용 aa[0:3] # 리스트이름[시작값:끝값+1] aa[2:] aa[:2] 컴프리헨션 -> 리스트 = [수식 for 항목 in range() i..
2022.10.21 -
R 설치
https://www.rstudio.com/products/rstudio/download/ Download the RStudio IDE RStudio is a set of integrated tools designed to help you be more productive with R. It includes a console, syntax-highlighting editor that supports direct code execution, and a variety of robust tools for plotting, viewing history, debugging and managing www.rstudio.com 위 링크로 들어가서 R studio를 설치한다. * 단축키 ctrl enter = run ..
2022.10.20