我需要帮助来执行结果集的联合并在javascript中应用orderby。
import pandas as pd
import matplotlib.pyplot as plt
df = pd.DataFrame({'x': [1, 5, 10],
'y1': [24, 7, 14],
'y2': [14, 6, 35]})
fig, ax = plt.subplots(figsize=(3, 5))
df.plot.line(x='x', ls='--', ax=ax)
# Reset prop cycle to obtain the same colors for the next plot
ax._get_lines.set_prop_cycle(plt.rcParams["axes.prop_cycle"])
df.plot.line(x='x', ls='', marker='.', ms=15, ax=ax, legend=False)
ax.set_ylim(bottom=0)
plt.show()
现在我需要在javascript中基于'order by s1'执行a1和a2的并集。
答案 0 :(得分:1)
您可以在查询中实现联合,并要求数据库执行此操作。语法如下:
.xpath
这会在一次询问中为您提供合并的结果集。