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?
Thanks for any replies.
Origin Ver. 2023b |
1 L A T E S T R E P L I E S (Newest First) |
YimingChen |
Posted - 06/13/2023 : 12:43:52 PM Try
wks.cols_axis('XYXY') |
|
|