Each dataframe is a gridded file, so I want to add the values at
corresponding grid cells from all the dataframes.
On Mon, Mar 25, 2019 at 6:22 PM Rui Barradas wrote:
> Sorry, I forgot to ask something.
>
> When you say you want to add the df's values, what exactly do you mean?
> All of the valu
Sorry, I forgot to ask something.
When you say you want to add the df's values, what exactly do you mean?
All of the values, by row, by column, what?
Rui Barradas
Às 10:20 de 25/03/2019, Rui Barradas escreveu:
Hello,
Maybe something like this?
Note that you *never* need to set header = FALS
Hello,
Maybe something like this?
Note that you *never* need to set header = FALSE, it already is the
default of read.table. You would have to with read.csv.
old_dir <- setwd("~/directory")
f1990 <- list.files(pattern = "^199.*\\.txt$")
r1990 <- lapply(f1990, read.table)
setwd(old_dir)
Hope
3 matches
Mail list logo