ほとんどPyplot公式のチュートリアルそのままの内容なので英語に抵抗がなければ本家を読むことをおすすめします。
https://matplotlib.org/users/pyplot_tutorial.html
import matplotlib.pyplot as plt
// let's say there is a Struct named `Person` and you want to sort vector of that structs by a float field. | |
use std::cmp::Ordering; | |
struct Person { | |
name: String, | |
height: u32 | |
} | |
impl PartialEq for Person { |
ほとんどPyplot公式のチュートリアルそのままの内容なので英語に抵抗がなければ本家を読むことをおすすめします。
https://matplotlib.org/users/pyplot_tutorial.html
import matplotlib.pyplot as plt