GR 백엔드 Plots.jl에서 일본어를 걸어 큐!
오늘은
plotting
채널에서 GR.jl의 개발자의 의견을 바라 보면 어쩔 수 있다고 하는 것으로 시험하면 무사할 수 있었다고 하는 경위가 있습니다. 움직이자.
평소 로직에
ENV["GKS_ENCODING"]="utf8"
fontfamily="serif-roman"
(← 명시하지 않아도 됨) 넣어두면 좋을 것 같다.
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.4.0 (2020-03-21)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
julia> # Plots, GR のバージョンを確認
(@v1.4) pkg> st Plots GR
Status `~/.julia/environments/v1.4/Project.toml`
[28b8d3ca] GR v0.48.0
[91a5bcdd] Plots v0.29.9
julia> ENV["GKS_ENCODING"]="utf8" # 最初に行う
"utf8"
julia> using Plots
julia> plot(randn(10),title="ゴマちゃん日本語できたよ",xlabel="x軸だよ",ylabel="y軸だよ",fontfamily="serif-roman")
julia> backend() # Plots のバックエンドを確認
Plots.GRBackend()
보충
Plots.jl Version 1.0 has been released! Congrats to the core JuliaPlots team and all of the contributors over the years that helped get the package to where it is today. Read more about the release here: . 언어 (@ JuliaLanguage) htps // t. 코 / 2 ← 0 아 CH RB
- 위에서 시도한 Plots.jl은 오래되었기 때문에. Pkg REPL에 들어가
(@v1.4) pkg> add Plots@1.0.8
를 사용하여 버전을 전환 할 수 있습니다.
(@v1.4) pkg> st GR Plots
Status `~/.julia/environments/v1.4/Project.toml`
[28b8d3ca] GR v0.48.0
[91a5bcdd] Plots v1.0.8
이 경우에도 마찬가지입니다.
결과
이것으로 신경쓰지 않고 일본어의 설명도 걸리네요.
Reference
이 문제에 관하여(GR 백엔드 Plots.jl에서 일본어를 걸어 큐!), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/SatoshiTerasaki/items/441e1e399271994795bb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)