[R] HELP! Mann whitney in r

Jim Lemon drjimlemon at gmail.com
Mon Mar 21 04:32:09 CET 2016


Hi santib2002,
If you only have the XLS file, you could install the "xlsx" package
and read that into R.

install.packages("xlsx")
read.xls(table1.xls)

If you can load it into Excel and export it as CSV format, you can
read it with the read.csv function:

read.csv("table1.csv")

Jim



On Sun, Mar 20, 2016 at 11:43 AM,  <santib2002 at gmail.com> wrote:
> This may be really basic, but could you help me with this issue?
> I have an excel file named table1.xls.
> I need to input this table in r, in order to calculate mann whitney between
> columns 1 and 2.
> Could you please show me how to do this task?
>
>         [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.



More information about the R-help mailing list