Re: [R] read.xls without row number, column numbers, or factors

2019-07-02 Thread David Carlson
Converting a one-row data frame to a list is not difficult, but there are several ways to represent the data as a list. Here is a possibility: > dta <- data.frame(t(LETTERS[1:10]), stringsAsFactors=FALSE) > dta X1 X2 X3 X4 X5 X6 X7 X8 X9 X10 1 A B C D E F G H I J > dta.lst <- as.list(

Re: [R] read.xls without row number, column numbers, or factors

2019-07-02 Thread Ivan Krylov
On Mon, 01 Jul 2019 20:13:34 -0400 ast...@mathnmaps.com wrote: > Is there a way to use read.xls to copy a portion of a single row of > an XLS spreadsheet to a list, without getting assigning row and > column numbers, and, if the data consists of strings, without > assigning levels? If you mean th