일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pip
- DFS
- synology
- Splunk
- Button
- SPL
- 알고리즘
- imread
- LSTM
- mean
- dataframe
- E-P1
- 삼성소프트웨어멤버십
- GT-S80
- ipad
- keras
- Python
- RNN
- pycharm
- javascript
- index
- GitHub
- Numpy
- Lotto
- Series
- SciPy
- pandas
- mariadb
- install
- CNN
- Today
- Total
목록pycharm (5)
잠토의 잠망경
pycharm → code 함수 선택 → 오른쪽 key → goto → test( shift + ctrl + T) 일부 코드가 자동으로 생성된다. 아래와 같이 sample을 넣었으니 unitest하면 된다. from unittest import TestCase class Test(TestCase): def test_read_dbdata(self): from Stock.sample_stock01 import readDBData readDatas = readDBData() self.assertTrue(len(readDatas) >0) test 가 안보이는 경우 모듈을 찾는 과정이라 못 보여주는 거니 참고 인래하라
참고 pycharm에서는 실행에 unitest 부분이 있다. 이걸로 실행한다. sample code def add(a, c): return a+c def mul(a, c): return a*c def divided(a, c): return a/c test code github import unittest import sample.myCalc as myCalc class myCalcTest(unittest.TestCase): def test_add(self): c = myCalc.add(10, 30) self.assertEqual(c, 40) def test_mul(self): c = myCalc.mul(10, 30) self.assertEqual(c, 300) def test_divided(self): ..
문제 상황 오류 메시지 Could not fetch URL https://pypi.org/simple/sklearn/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/sklearn/ (Caused by SSLError(SSLError(1, '_ssl.c:499: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version'),)) - skipping python 2.7 종료 때문이지 pip download가 정상적으로 되지 ..
GITHUB https://github.com/yiwonjae/Project_Book_002/blob/master/ch05/p194.py 불러오는 중입니다... 0. 목표 항공사 탑승객의 수요를 예측한다. 1. DATA # Data Read import pandas as pd fname='data.txt' dataset = pd.read_csv(fname, usecols=[1], engine='python', skipfooter=3) data = dataset.values.reshape(-1) ShowMeDrawData(data) data는 local data를 활용한다. panda를 활용하여 csv file을 read한다. 그리고 values.reshape(-1) 통해서 data를 추출한다. 2. DA..