a character string specifying the alternative hypothesis, must be one of "two.sided" (default), "greater" or "less". You can specify just the initial letter.
…
further arguments to be passed to or from methods.
Value
A list with class "htest" containing the following components:
statistic
the value of the t-statistic.
parameter
the degrees of freedom for the t-statistic.
p.value
the p-value for the test.
estimate
the winsorized correlation.
null.value
the specified hypothesized value of the winsorized correlation (=0).
alternative
a character string describing the alternative hypothesis.
data.name
a character string giving the name(s) of the data.
# NOT RUN {data(PrisonStress)
with(PrisonStress,winsor.cor.test(PSSbefore,PSSafter))
with(PrisonStress,winsor.cor.test(paired(PSSbefore,PSSafter)))
# }