Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
上下文:我有一个包含多个数字列的数据集,我正在 Contour 中对其进行分析。在我分析的一个步骤中,我想为每一行找到三个不同列的最小值。
问题: Contour 中是否有表达式函数可以用来获取两列或多列的最小值或最大值?
一般来说,您可以在参考部分下的 Foundry Contour 文档中找到所有可用的表达式函数。
对于这种特定情况,可以使用以下两个函数:
GREATEST
LEAST
用法如下所示:
greatest("numeric_column_1", "numeric_column_2", "numeric_column_3")