在nifi中,假设有一个包含50个键的json,我想通过使用EvaluateJsonPath从中获取15个值,这是否包括性能影响?这是一个好习惯,因为我知道我们可以使用Jolt转换,但是使用JsonpathEvaluator和ReplaceText更容易。
答案 0 :(得分:0)
import seaborn as sns
import matplotlib.pyplot as plt
import matplotlib
range_x = [-1, 0, 1, 2]
range_y = [-5, -3, -1, 1]
ax = sns.lineplot(x = range_x, y = range_y, markers = True)
sns.lineplot(ax = ax, x = [range_x[0], range_x[-1]], y = [0, 0], color = 'black')
sns.lineplot(ax = ax, x = [0, 0], y = [range_y[0], range_y[-1]], color = 'black')
ax.fill_between(range_x, range_y, facecolor = 'red', alpha = 0.5)
plt.savefig('test_fig', bbox_inches = 'tight')
plt.close()
具有15个路径表达式(如果可以使用模式,则更少)是这里的最佳选择。