Ironpython-如何在其他代码行中引用计算出的变量

问题描述 投票:0回答:1

我正在Spotfire中使用IronPython。

我需要从范围过滤器中提取最大日期值,然后使用该值过滤汇率表。

我拥有直到datatable.Select语句为止的工作代码,我需要在其中进行匹配。如果我基于“ Date(2020,3,1)”(被注释掉的行)执行此操作,则匹配有效并返回了正确的结果,但是对于使用计算所得的变量“ newdate”,我无法获得正确的语法代替Date(xxx)语句。我仍在学习python,以前没有碰到过。

以下代码-任何帮助将不胜感激。

from Spotfire.Dxp.Application.Filters import RangeFilter, ValueRange
from Spotfire.Dxp.Data.DataType import  Date
from System.Globalization import CultureInfo
parser = Date.CreateCultureSpecificFormatter(CultureInfo("en-AU"))


#get a reference to a filter as checkbox from the myDataTable script parameter
filt=Document.FilteringSchemes[Document.ActiveFilteringSelectionReference].Item[dt].Item[dt.Columns.Item["Calendar Date"]].As[RangeFilter]()

print filt.ValueRange.High

if str(filt.ValueRange.High) == "High":
    maxdate = Document.Properties["loaddate"]
else: 
    maxdate = filt.ValueRange.High

maxdate = Date.Formatter.Parse(maxdate)
print maxdate
new = str(maxdate.Year) + "," + str(maxdate.Month) + "," + str("1")
print new
Document.Properties["maxdate"] = new


from Spotfire.Dxp.Data import *
from System.Collections.Generic import List
table=Document.ActiveDataTableReference
# Expression to limit the data in a table 
rowSelection=table.Select("CALENDAR_DATE = Date('new')")
#rowSelection=table.Select("CALENDAR_DATE = Date(2020,3,1)")

# Create a cursor to the Column we wish to get the values from
cursor = DataValueCursor.CreateFormatted(table.Columns["FY_AVERAGE_EXCHANGE"])

# Create List object that will hold values
listofValues=List[str]()

# Loop through all rows, retrieve value for specific column,
# and add value into list
for  row in  table.GetRows(rowSelection.AsIndexSet(),cursor):
   rowIndex = row.Index
   value1 = cursor.CurrentValue
   listofValues.Add(value1)


for val in listofValues:
    print val
python ironpython spotfire
1个回答
0
投票

我认为您的new变量将打印为2020,01,01

此行中的new是字符串,因此Date()无法提取日期。

rowSelection=table.Select("CALENDAR_DATE = Date('new')")

您应该将new用作变量

rowSelection=table.Select("CALENDAR_DATE = Date(" +new +")")

但不确定日期是否可以使用整数而不是字符串,因此您可能必须重写为:

y = maxdate.Year
m= maxdate.Month 
d = 1 

rowSelection=table.Select("CALENDAR_DATE = Date("+ y + ',' + m +',' + d + ")")

或先构建您的String,这是我会使用的方法:

y = maxdate.Year
m= maxdate.Month 
d = 1 
mystring =  "CALENDAR_DATE = Date("+ str(y) + ',' + str(m) +',' + str(d) + ")"

rowSelection=table.Select(mystring) 

以上方法之一应该起作用,我将从最后一个方法开始设置您的字符串,因为最有意义的是不处理整数和字符串的许多转换。

如果将问题与DXP示例一起发布到Tibco,由于可以使用dxp示例,因此答案可能会提供更多帮助。但希望这可以帮助您。

© www.soinside.com 2019 - 2024. All rights reserved.