Jump to content
Software FX Community

Statistic XY Correlation


User (Legacy)

Recommended Posts

In the XY Correlation study group, what is the confidence value underlying 

the t-Test?

I've searched the help stuff but can't find anything on this

Also, is there anyway to control the title of the Statistics LegendBox?

I tried using the Statistics.LegendBoxObj but it didn't expose a Titles

property (although it inherits a number of LegendBoxObj properties)

Thanks

David

Link to comment
Share on other sites

The Confidence can be set globally in the Statistics extension as follows:

statistics1.Confidence = 99;

The default value is 95 (percent).

Confidence can also be set at the Study level, overriding the global setting

as follows:

StudyTest test = (StudyTest) statistics1.Studies.Add(Test.RegressionTTest);

test.Confidence = 99;

--

Francisco Padron

www.chartfx.com

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...