看看这个漂亮的图。
在matplotlib中,有没有办法使红色和绿色图形的部分不可见(其中f(x)= 0)?
不仅如此,平坦部分连接到正弦曲线的单线段也是如此。
基本上可以告诉matplotlib仅在一定间隔内绘制图形,而不绘制其余图形(反之亦然)吗?
答案 0 :(得分:1)
您可以尝试用render() {
let saved;
this.props.apolloClient
.watchQuery<Query>({
query: gql`
query($id: ID!) {
element(id: $id) {
children {
... on TextNote {
name
description
type
}
}
}
}
`,
variables: { id: 0 }
})
.subscribe(({ data: { element: { children } } }) => {
console.log(children); // this is the wanted result
saved = children;
});
console.log("save");
console.log(saved); // this is undefined for some reason
替换您的兴趣点,如下所示:
np.nan