- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
목록Python (63)
민서네집
YesTrader에서 지표 만들기 - 시뮬레이션 차트에서는 가격 파일이 안 만들어지고, 전략 차트에서만 만들어지기 때문에, 최대 10000개의 가격 데이터만 저장되는 제약사항이 있다. Var: 종목명(""); Var: 파일명(""); Var: 소숫점자릿수(0), cnt(0), temp(0), DP(""); // 해당 종목의 소숫점자릿수 계산 If DP=="" Then { temp = PriceScale*1000000; For cnt = 0 To 6 { If temp % 10 > 0 Then { 소숫점자릿수 = 6-cnt; cnt = 99; } temp = temp / 10; } DP = NumToStr(소숫점자릿수,0); } If GloBalBarIndex==0 Then { 종목명 = SymbolName..
https://mpld3.github.io/ mpld3 — Bringing Matplotlib to the Browser mpld3 The mpld3 project brings together Matplotlib, the popular Python-based graphing library, and D3js, the popular JavaScript library for creating interactive data visualizations for the web. The result is a simple API for exporting your matplotlib graph mpld3.github.io https://mpld3.github.io/notebooks/index.html#notebook-exa..
https://plot.ly/python/getting-started-with-chart-studio/ Getting Started with Plotly for Python Installation and Initialization Steps for Using Chart Studio in Python. plot.ly https://plot.ly/python/creating-and-updating-figures/#make-subplots Jupyter Notebook 안에서 실행되는 예제가 많다. Creating and Updating Figures Creating and Updating Figures from Python plot.ly Jupyter Notebook Tutorial in Python htt..
# Jupyter Notebook 변수 보기 (Variable Viewer) https://versusall.tistory.com/entry/Jupyter-Notebook-3-%EB%B3%80%EC%88%98-%EB%B3%B4%EA%B8%B0Variable-viewer Jupyter Notebook 3. 변수 보기(Variable viewer) Jupyter Notebook 3. 변수 보기(Variable viewer) # Jupyter Notebook 3. 변수 보기(Variable viewer)¶ 들어가면서¶ Matlab을.. versusall.tistory.com
What is the right way to debug in iPython notebook? What is the right way to debug in iPython notebook? As I know, %debug magic can do debug within one cell. However, I have function calls across multiple cells. For example, In[1]: def fun1(a) def fun2(b) # I want to set a stackoverflow.com PixieDebugger – A Visual Python Debugger for Jupyter Notebooks Every Data Scientist Should Use https://www..
http://corazzon.github.io/matplotlib_font_setting matplotlib 한글폰트 사용하기 20 November 2017 matplotlib 한글폰트 사용하기 1. 필요한 패키지를 가져옵니다. # 그래프를 노트북 안에 그리기 위해 설정 %matplotlib inline # 필요한 패키지와 라이브러리를 가져옴 import matplotlib as mpl import matplotlib.pyplot as plt import matplotlib.font_manager as fm # 그래프에서 마이너스 폰트 깨지는 문제에 대한 대처 mpl.rcPara corazzon.github.io Anaconda 설치 후 font를 설치한 경우라면 Anaconda에서 폰트를 인식하지 못하..
[출처] https://frhyme.github.io/python-lib/jupyter_notebook_font_change/ jupyter notebook 커스토마이징하기. 나는 갑자기 왜 jupyter notebook 설정을 바꾸었나 frhyme.github.io 나는 custom.css 파일을 아래와 같이 설정했다. .CodeMirror pre {font-family: D2Coding; font-size: 12pt; line-height: 140%;} /* .container { width:100% !important; } */ div.output pre, div.output_area pre { font-family: Consolas; font-size: 12pt; } J..
아래는 양재동 코드랩 수강 시 조대연 강사님이 제공해 주신 자료입니다. Jupyter 노트북 테마 적용하기 http://haanjack.github.io/tool/2016/03/08/jupyter-theme.html dunovank/jupyter-themes 적용함 @ https://goo.gl/g5Mzsi 1) pip install --upgrade jupyterthemes 2) Command Line Usage 조합으로 테마조정 -> 현재 적용된 테마 : jt -t grade3 -T -N -f bitstream -fs 10 -nf opensans -nfs 11 -tf robotosans -tfs 10 -cellw 1140 -lineh 150 - 테마 : grade3 - 툴바 & 제목바 보임 : T &..
https://www.kevinsheppard.com/Python_for_Econometrics
python 프로그램을 Windows 운영체제의 명령 프롬프트에서 실행하면서 redirect 시켜서 파일에 저장할 때 쓰기가 지연되는 문제가 있다. 성능을 위해서 일부러 그랬을텐데, tail 프로그램으로 로그를 확인하는데는 매우 불편했다. 여기에 대해서 해결책을 몇가지 찾았다. https://stackoverflow.com/questions/21981665/redirect-output-without-delay-to-a-file-in-python For every iteration, you must add this.sys.stdout.flush() A simple solution is to add a -u option for python command to force unbuffered stdin, std..