在使用matplotlib生成干线图时,如何使基线延伸到轴限制而不是以最后的数据点结束?
答案 0 :(得分:1)
从函数调用
返回...
/**
* Determine whether the user can create employees.
*
* @param \App\User $user
* @return mixed
*/
public function create(User $user)
{
return $user->can('update', Company::find(
app('request')->get('company_id')
));
}
...
图的基线
plt.stem
您可以将该行的数据设置为markerline, stemlines, baseline = plt.stem(x, np.cos(x), '-.')
并使用[0,1]
,以便将这些坐标解释为轴坐标。
yaxis_transform