問題タブ [ridgeline-plot]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - seaborn の「リッジ プロット」で軸ラベルに単位を追加する方法
seaborn の「リッジ プロット」の例 ( https://seaborn.pydata.org/examples/kde_ridgeplot.html )に基づいて、次のことを行いたいと思います。
単位を x 軸の x ラベルに追加して、プロットで [m] の xとして表示されるようにします。それ、どうやったら出来るの?g.map(label, "x")
コマンドを次のように拡張するg.map(label, "x in [m]")
と、次のエラーが発生します: KeyError: "['x [m]'] not in index"
私のコードは次のとおりです。