This can be a very stupid question, and I feel I need to know the answer.
I use a package called maxstat, when I run the test, I get output, for example:
Maximally selected Wilcoxon statistics using none data: x and scores M = 8.3107, p-value = NA sample estimates: estimated cutpoint 0.6421
I call this output "x" and I only want to get the value of the evaluation point. Therefore, I try:
> x$estimate estimated cutpoint 0.6421
How can I get the value 0.6421 without the attached name "estimated point"?
I want to put this value in a table, and when I use cbind or rbind to append the values, the name will also be attached.
source share