Tag: python

Matplotlib Colormap Customization (3)

matplotlib에서 custom colormap을 만들고 적용하는 방법입니다. 3부로 나누어 1부에 해당하는 본 글에서는 시각적 디자인을, 2~3부에서는 코드 위주로 정리합니다. Creating Colormaps in Matplotlib Matplotlib Custom Colormap 지난 글에는 크게 두 가지 그림이 등장합니다. 하나는 valu

Matplotlib Colormap Customization (2)

matplotlib에서 custom colormap을 만들고 적용하는 방법입니다. 3부로 나누어 1부에 해당하는 본 글에서는 시각적 디자인을, 2~3부에서는 코드 위주로 정리합니다. Creating Colormaps in Matplotlib Matplotlib Custom Colormap 지난 글에는 크게 두 가지 그림이 등장합니다. 하나는 valu

Matplotlib Colormap Customization (1)

matplotlib에서 custom colormap을 만들고 적용하는 방법입니다. 3부로 나누어 1부에 해당하는 본 글에서는 시각적 디자인을, 2~3부에서는 코드 위주로 정리합니다. Creating Colormaps in Matplotlib 1. Visual Perception Practical Rules for Using Color in Chart

Pit Stop for Software Maintenance

thumbnail image Formula One pit stop: How does the crew work and what are the roles to ensure Sebastian Vettel and Co can return to the track in a matter of seconds? Jupyter NotebookJupyter Lab

Paraview looks like VESTA

ParaviewVESTA: Visualization for Electronic and STructural Analysis Atomic Structure Analysis 원자 구조를 분석할 때 저는 paraview를 사용합니다. 다른 분들은 분야 표준인 VESTA를 선호하시지만, 저는 제가 추출한 구조데이터를 table 형태로 함께 봐야 하기 때문입니다

Envelope for Least Square Filtering and Smoothing

Signal Envelope scipy.signal.hilbertscipy.interpolate.interp1d 복잡한 신호의 전반적인 형상을 파악하기 위해 envelope을 추출합니다. python에서는 scipy.signal.hilbert를 통해 analytic signal을 추출하는 방법을 씁니다. 12x = np.arange(0, 20.1, 0

Connecting Points in Paraview

Contributor 시뮬시뮬님 Reference ParaviewParaview: Python Programmable FilterParaView’s Python documentation!VTK: Visualization ToolkitCornell Virtual Workshop: Paraview Programmable Filter Paraview +

Words Co-occurence in Academic Literatures

1. 요약1.1. 포부 논문을 긁어서 내용을 정리할 수 있음을 이전 글에서 간략히 언급했습니다. 짧은 시간동안 필요한 결론을 도출할 수 있었고 피보고자의 반응도 좋았습니다. Notepad++에서 시간에 쫓기며 find(Ctrl+F), replace(Ctrl+H)를 반복하며 작업했기에 기록도 없었습니다. 다음에도 이 강력한 기능의 재현 가능성을 확보하고자 했

Bresenham's Line Algorithm

wikipedia: Bresenham’s line algorithmwikipedia: Xiaolin Wu’s line algorithmflags’s github 연속된 공간에 있는 두 점과 그 사이에 정의된 선분은 어려운 주제는 아닙니다. 그러나 이 점들을 비트맵 이미지처럼 유한한 수의 점으로 표현해야 한다면 적절한 위치에 근사하는 것은 아주 귀찮은

Stratified Sampling

Contributor 김승욱님, dane님 References wikipedia: Stratified SamplingWhen should you choose Stratified sampling over random sampling?핸즈온 머신러닝 (2판)핸즈온 머신러닝 (2판): 2장 - 머신러닝 프로젝트 처음부터 끝까지 notebook 1. Int