spss.AddProcedureFootnotes Function (Python)
spss.AddProcedureFootnotes(footnote). Adds a footnote to all tables generated by a procedure. The argument footnote is a string specifying the footnote.
- The
AddProcedureFootnotes
function can only be used within aStartProcedure-EndProcedure
block or within a custom procedure class based on thespss.BaseProcedure
class.
Example
import spss
spss.StartProcedure("mycompany.com.demoProc")
spss.AddProcedureFootnotes("A footnote")
table = spss.BasePivotTable("Table Title",
"OMS table subtype")
table.SimplePivotTable(cells = [1,2,3,4])
spss.EndProcedure()