我是Spotfire的初学者。我对某些列值的差异计算存在问题。
我为日期差异计算打开了一个类似的问题,请参阅:calculate the time difference for same column in Spotfire
如何计算同一列的差异,是否有像DateDiff()这样的相关函数?例如:
def validate_file_extension(value):
if not value.name.endswith('.csv'):
raise forms.ValidationError("Only CSV file is accepted")
class DocumentForm(forms.Form):
docfile = forms.FileField(label='Select a file',validators=[validate_file_extension])
结果可能是:
id times state
1 12 1
2 7 0
3 10 1
4 11 0
5 6 1
6 9 0
7 7 1
例如:第一个区别: -2 = 10 (第三行,状态为1) - 12 (第一行,状态为1)
感谢您的帮助:)