반응형
아따 제목 어렵다.
Join할 수도 없고 Relation을 할수도 없는데 주어진 특정값에 일치하는 행이 있다면 그 행의 특정 값을 가져오는 예제.
스샷은 귀찮아서 소스만 올립네다.
from Spotfire.Dxp.Data import * table = Document.Data.Tables["Baseball"] keyColumn = table.Columns["팀명"] tarColumn = table.Columns["선수명"] result = "" for i in range(0, table.RowCount): if keyColumn.RowValues.GetValue(i).ValidValue == Document.Properties["test"]: if result == "": result = tarColumn.RowValues.GetValue(i).ValidValue else: result = result + "'" + tarColumn.RowValues.GetValue(i).ValidValue Document.Properties["result"] = "'" + result + "'"
'Data Analysis > Python' 카테고리의 다른 글
Python : Numpy Intall 하기 (0) | 2015.11.02 |
---|---|
Spotfire & Python : 특정일자를 Input Field에 설정하기 (0) | 2015.08.30 |
Spotfire & Python : Marking 한 값을 가져오기 (22) | 2015.08.20 |
Python : pyodbc를 이용해서 MSSQL 접속 (0) | 2015.07.07 |
Spotfire & Python : Add Bookmark (0) | 2015.07.02 |
댓글