Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
T O P I C R E V I E W
Tare
Posted - 06/13/2023 : 09:10:32 AM Is there a way to set the column designations (e.g. the dependent and independent, x or y column designations) through external python code using originpro package?
For example I can set very easily the Units and Comments from lists named units, comments by: #find the worksheet wks=op.find_sheet()
#write the units down on the "Units" row wks.set_labels(units, 'U')
#write the comments wks.set_labels(comments, 'C')
Is there some way to set the columns as x or y by the python code?