- Today
- Total
Recent Posts
Recent Comments
Archives
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- python 중간고사
- 파이썬 입문
- c언어
- python data structure
- 파이썬 자료구조
- Crawling
- 코딩문제
- 알고리즘
- 프로그래밍
- 면접 파이썬
- 자료구조
- 셀레니움
- 파이썬3
- 크롤링
- 파이썬
- 알고리즘 강의
- 파이썬 알고리즘
- 채용문제
- 파이썬활용
- 기말시험
- 대학시험
- 코딩시험
- gdrive
- 파이썬 강의
- 자료구조 강의
- 중간시험
- 알고리즘 강좌
- 쉬운 파이썬
- selenium
- 파이썬 강좌
Notice
목록2018~/머신러닝 (1)
반원 블로그
[numpy] 01 ndarray 기본과 메소드(함수) 사용법
가장 기본적인 numpy matplotlib 사용 예제 import numpy as np import matplotlib.pyplot as plt x = np.array([1,2,3]) y = np.array([2,4,6]) plt.plot(x,y) [] np.array 함수로 생성하기 x = np.array([1,2,3,4]) print(x) y = np.array([[2,3,4],[1,2,5]]) print(y) print(type(y)) [1 2 3 4] [[2 3 4] [1 2 5]] np.arange 함수로 생성 np.arange(10) array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) np.arange(1,10) array([1, 2, 3, 4, 5, 6, 7, 8, 9]) ..
2018~/머신러닝
2019. 10. 27. 18:16