[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: return column from table as a column
From: |
Greg Minshall |
Subject: |
Re: return column from table as a column |
Date: |
Fri, 13 Aug 2021 17:30:47 +0300 |
Roger,
> Is there some means of changing 'data=s1[,3]' to accomplish this?
there may be some more formal way (and i think some of the
data.frame.alternative packages, like data.table:: or dplyr::, have
their own ways), but you might try transposing
> t(data=s1[,3])
cheers, Greg