コード例 #1
0
ファイル: udf.py プロジェクト: resurgo-genetics/ibis
 def _type_signature(self, inputs, output):
     input_type = _to_input_sig(inputs)
     output = validate_type(output)
     output_type = rules.scalar_output(output)
     return input_type, output_type
コード例 #2
0
ファイル: udf.py プロジェクト: mahantheshhv/ibis
 def _type_signature(self, inputs, output):
     input_type = _to_input_sig(inputs)
     output = validate_type(output)
     output_type = rules.scalar_output(output)
     return input_type, output_type
コード例 #3
0
class Mean(Reduction):

    output_type = rules.scalar_output(_mean_output_type)
コード例 #4
0
class Min(Reduction):

    output_type = rules.scalar_output(_min_max_output_rule)
コード例 #5
0
class Sum(Reduction):

    output_type = rules.scalar_output(_sum_output_type)