파이썬에서 seaborn / matplotlib처럼 많이 쓰이는 그래프(시각화) 라이브러리는 아래가 유명합니다1) 정적(Static) 시각화 / 논문·리포트용Matplotlib: 사실상 표준. 커스터마이징 폭이 넓고 대부분의 라이브러리 기반.Seaborn: Matplotlib 기반. 통계적 그래프(분포, 회귀, 범주형 비교 등) 예쁘게 빠르게.Pandas plotting: df.plot()처럼 간단히 그릴 때 편함(내부적으로 Matplotlib 사용).2) 인터랙티브(Interactive) 대시보드/웹 친화Plotly: 인터랙티브 그래프 강력(줌/호버/범례 토글). 대시보드(Plotly Dash)와 궁합 좋음.Bokeh: 웹 기반 인터랙티브 시각화. 스트리밍/대시보드에도 사용.Altair: 선언형(Gra..
파이썬과는 관련없음https://100.datavizproject.com/ 1 dataset. 100 visualizations.Can we come up with 100 visualizations from one simple dataset? As an information design agency working with data visualization every day, we challenged ourselves to accomplish this using insightful and visually appealing visualizations. We wanted to show100.datavizproject.com Seaborn Libraryhttps://seaborn.pydata.org/exa..
npx office-addin-debugging --help PS > npx office-addin-debugging --helpUsage: office-addin-debugging [options] [command]Options: -V, --version output the version number -h, --help display help for commandCommands: start [options] [platform] stop [options] [platform] help [command] display help for..
esbuild는 Go 언어로 만들어져 압도적으로 빠른 속도를 자랑하는 자바스크립트 번들러이자 트랜스파일러입니다. Vite와 같은 최신 개발 도구의 핵심 엔진으로 사용되며, 프로젝트의 빌드 및 개발 속도를 획기적으로 개선하는 데 사용됩니다. 쉽게 말해 esbuild는 자바스크립트 소스 코드를 웹브라우저나 다른 환경에서 실행할 수 있도록 변환하고 묶어주는 **초고속 빌드 도구(Build Tool)**입니다.주로 다음과 같은 두 가지 핵심 기능을 수행합니다.번들러 (Bundler): 여러 개의 자바스크립트 파일(import, require로 연결된)을 하나의 파일로 합쳐줍니다. 이는 웹브라우저가 파일을 더 효율적으로 불러올 수 있게 해줍니다.트랜스파일러 (Transpiler): 최신 버전의 자바스크립트(ES..
아래처럼 설정해야sub folder에서도 "node_modules" 폴더가 생성되면서 실행가능 "workspaces": [ "packages/*", "playground-standalone" ] _