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, <santib2...@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@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. ______________________________________________ R-help@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.