태그>python(총 853개의 글)
'python' 관련 최근글
-
- ModuleNotFoundError: No module named 'pysqlite2'

-
Cliver's a Omtmoa by Fredric Cliver|2018/08/27 18:01
Traceback (most recent call last): File "/anaconda3/bin/jupyter-notebook", line 7, in from notebook.notebookapp import main File "/anaconda3/lib/python3.6/site-packages/notebook/notebookapp.py", l..
- ModuleNotFoundError: No module named 'pysqlite2'
-
- python3.7 libquadmath.0.dylib

-
Cliver's a Omtmoa by Fredric Cliver|2018/08/20 17:22
brew 로 설치한 pythonPython3.7 로 quandl 라이브러리 사용하는 중에 에러 발생. ~~~~libquadmath.0.dylib~~~~ numpy 쪽이 꼬인 것으로 보임. anaconda 로 python 3.6.5 이용하는 걸로 환경 바꿔서 해결.
- python3.7 libquadmath.0.dylib
-
-
- Tex in matplotlib [Python]

-
Imagination is more important than knowledge (지식보다 상상) by 바죠|2018/07/14 12:30
Tex in matplotlib 수식을 가장 잘 표현하는 방법은 Tex을 사용하는 것이다.계산 결과 정리 그림에서도 Tex 기반 수식을 사용할 수 있다면 금상첨화일것이다. 이것이 가능하다. Tex에 익숙한 사람들에게는..
- Tex in matplotlib [Python]
-
- matplotlib tutorial [Python]

-
Imagination is more important than knowledge (지식보다 상상) by 바죠|2018/07/06 17:11
matplotlib tutorial 파이썬을 사용하는 중대한 이유중의 하나는 바로 그림 그리기의 유용성이다. 방대한 데이터를 정리하고 원하는 데이터 정리용 그림을 쉽게 그릴 수 있는 것이 매우 중요하다. 계산과 데이터 정리가 동시에 이루어 질 수 있다. 단순히 그림 그리기를 넘어서 숨어..
- matplotlib tutorial [Python]
-
- Web scraping [Python]

-
Imagination is more important than knowledge (지식보다 상상) by 바죠|2018/07/04 13:49
웹상에 존재하는 데이터들이 많이 있다. 전공을 불문하고 매우 많은 자료들이 무료로 공급되는 것이 현실이다.이들 자료를 자신의 컴퓨터로 가져와서 그림을 그리는 것을 상상할 수 있다. 이러한 일들을 지원하는..
- Web scraping [Python]
-
- MQTT통신을 이용한 메신저와 자연어 처리, IOT장치 제어 - 2

-
전공공부 by uikyo93|2018/07/02 18:39
12345678910111213141516171819202122 @Override public void messageArrived(String topic, MqttMessage message) throws Exception { ChatDto new_chat = new ChatDto(); long time = System.currentTimeMillis(); SimpleDateFormat dayTime = new..
- MQTT통신을 이용한 메신저와 자연어 처리, IOT장치 제어 - 2
-
- Python 언어 강의자료

-
Imagination is more important than knowledge (지식보다 상상) by 바죠|2018/07/02 09:43
Python 언어 강의 자료: 생산성이라는 기준으로 볼 때, 파이썬이 가장 이상적인 컴퓨터 언어이다. 목표물을 최단시간안에 끌어낼 수 있느냐? 우리는 시간이 없다. 세상은 우리를 기다려 주지 않는다. 내 언어의..
- Python 언어 강의자료
-
- The Basel problem [Python, pypy]

-
Imagination is more important than knowledge (지식보다 상상) by 바죠|2018/06/27 14:44
The Basel problem . 파이썬 프로그램의 실행속도를 따져 보고자 한다.파이썬, 포트란 90 컴퓨터 프로그램을 활용하여, 수치적 방법으로, 위의 공식의 타당성을 체크해보고자 한다. 특히, 파이썬 언어로..
- The Basel problem [Python, pypy]
-
- mpi4py

-
Imagination is more important than knowledge (지식보다 상상) by 바죠|2018/06/07 18:42
mpi4py mpiexec -n 4 python script.py - mpi4py를 활용한 함수 최소화단, 함수는 모든 cpu들이 동원되어 병렬적으로 계산함. 최종적으로 변수들의 최적값들은 1개의 cpu에서만 이루어짐. 1개의 cpu..
- mpi4py
-
- 컴퓨터 프로그래밍 기본 원칙

-
Imagination is more important than knowledge (지식보다 상상) by 바죠|2018/06/07 09:50
컴퓨터 프로그래밍 기본 원칙 늘 테스트가 가능한 상황을 만든다. 다시 말해서, 명확한 정답이 있는 경우에 대해서 먼저 프로그래밍을 완성한다. 많은 경우, 원하는 프로그램과 알고리듬을 google.com 에서 찾을 수 있다. 어떻게 프로그램 하는지를 쉽게 검색할 수 있다. 생각..
- 컴퓨터 프로그래밍 기본 원칙
-
- 파이썬에서 C 프로그램 부르기

-
Imagination is more important than knowledge (지식보다 상상) by 바죠|2018/06/06 18:54
파이썬에서 C 프로그램 부르기 add.c #For Linux $ gcc -shared -Wl,-soname,adder -o adder.so -fPIC add.c #For Mac $ gcc -shared -Wl,-install_name,adder.so -o add..
- 파이썬에서 C 프로그램 부르기
-
- 파이썬에서 포트란 프로그램 부르기

-
Imagination is more important than knowledge (지식보다 상상) by 바죠|2018/06/06 18:46
파이썬에서 포트란 프로그램 부르기 my_lib.f90 f2py -c -m my_lib my_lib.f90 my_lib.so main.py python main.py
- 파이썬에서 포트란 프로그램 부르기
-
- NumPy

-
Imagination is more important than knowledge (지식보다 상상) by 바죠|2018/06/05 19:30
NumPy >>> import numpy as np >>> x = np.array([1, 2, 3]) >>> x array([1, 2, 3]) >>> y = np.arange(10) # like Python's range, ..
- NumPy
-
- class [Python]

-
Imagination is more important than knowledge (지식보다 상상) by 바죠|2018/05/30 19:30
클래스Object oriented programming을 위한 선택.변수와 함수들을 한꺼번에 정의함. 클래스에서 사용된 함수를 특별히 method라고 부른다. method도 클래스에 포함되어 있다는 점만 제외하면 일반함수..
- class [Python]




