Hiding graph in Bivariate analysis?
Hello, I have a script which include a Bivariate analysis, however I would like to have just the Linear Fit statistics table show up, and hide the graph itself. this_dt << Bivariate(
Y( Column(this_dt, this_cols[j])),
X( :"Time (Months)" ),
By( :"Lot Number" ),
Fit Line,
Invisible
)As you can see I included the Invisible condition in Bivariate( ), but the graph is still showing up in m...
herberthinterbe