반응형

생각/파이썬 , R 5

파이썬 라이브러리와 예시

NumPy (수치 계산 라이브러리) python import numpy as np a = np.array([1, 2, 3]) b = np.array([4, 5, 6]) c = a + b print(c) Pandas (데이터 분석 라이브러리) python import pandas as pd data = {'name': ['John', 'Alice', 'Bob'], 'age': [32, 24, 29]} df = pd.DataFrame(data) print(df) Matplotlib (시각화 라이브러리) python import matplotlib.pyplot as plt x = [1, 2, 3, 4, 5] y = [1, 4, 9, 16, 25] plt.plot(x, y) plt.xlabel('x') plt...

파이썬 예시 코드

출력하는 코드: python print("안녕하세요!") 문자열 조작 코드: python s = "뤼튼입니다" s_upper = s.upper() print(s_upper) 리스트 정렬 코드: python numbers = [3, 1, 4, 2] sorted_numbers = sorted(numbers) print(sorted_numbers) 함수 생성 코드: python def add(a, b): return a + b result = add(3, 4) print(result) 클래스 생성 코드: python class Dog: def __init__(self, name, age): self.name = name self.age = age def bark(self): print(f"{self.name}..

파이썬 기초 문법

다음은 파이썬의 기본 문법에 대한 간략한 설명입니다. 변수(variables): 값을 저장할 수 있는 공간입니다. 예: num = 5, name = "John" 자료형(Data Types): 파이썬에서 사용되는 기본 데이터의 종류로 몇 가지 예시가 있습니다. 정수(Integer): num = 5 실수(Floating Point): num = 5.0 문자열(String): name = "John" 리스트(List): my_list = [1, 2, 3, 4, 5] 튜플(Tuple): my_tuple = (1, 2, 3, 4, 5) 딕셔너리(Dictionary): my_dict = {'key': 'value', 'name': 'John'} 흐름제어(Flow Control): 조건문과 반복문을 사용한 프로그램의..

[파이썬 R 데이터 분석 1강]

S 의 탄생 : John Chambers, Rick Becker and Allan Wilks (AT&T Bell Lab) 가 1980년대에 새로 개발한 통계프로그램 언어를 S 라 명함 Ross Ihaka and Robert Gentleman(Univ. of Auckland, New Zealand) 가 교육 목적으로 S 의 축소버전 (reduced version) “R & R” 을 만듦 R의 발표 : 1995년 Martin Maechler 가 Ross Ihaka 와 Robert Gentleman을 설득하여 Linux system 과 같이 Open Source Software 규약인 GPL(General Public Licence) 규약하에 R의 source code를 발..

반응형