Displaying 3 results from an estimated 3 matches for "aar_dailyweather".
2024 Nov 06
3
Using multiple dat files
...port multiple .dat weather files I am using list.files().
I intend to use the R package ?ClimInd? to calculate different agroclimatic indicators.
Question: Is there another solution to import multiple .dat files so that I can select elements from the list, e.g. one specific weather file (example AAR_DailyWeather)?
# Import multiple .dat files weather data
filelist <- list.files(path = "O:/Data-Work/??./Daten_RA-MeteoCH_1990-2021", pattern='*.dat', all.files= T, full.names= T)
W <- lapply(filelist, function(x) read.table(x, header = TRUE, sep = "", colClasses = "nu...
2024 Nov 06
1
Using multiple dat files
...les().
>> I intend to use the R package ?ClimInd? to calculate different
>> agroclimatic indicators.
>>
>> Question: Is there another solution to import multiple .dat files so that
>> I can select elements from the list, e.g. one specific weather file
>> (example AAR_DailyWeather)?
>>
>>
>> # Import multiple .dat files weather data
>> filelist <- list.files(path =
>> "O:/Data-Work/??./Daten_RA-MeteoCH_1990-2021", pattern='*.dat', all.files=
>> T, full.names= T)
>> W <- lapply(filelist, function(x) read.table(...
2024 Nov 07
0
Using multiple dat files
...s().
> I intend to use the R package ?ClimInd? to calculate different agroclimatic
> indicators.
>
> Question: Is there another solution to import multiple .dat files so that I
> can select elements from the list, e.g. one specific weather file (example
> AAR_DailyWeather)?
>
>
> # Import multiple .dat files weather data
> filelist <- list.files(path = "O:/Data-Work/??./Daten_RA-MeteoCH_1990-2021",
> pattern='*.dat', all.files= T, full.names= T)
> W <- lapply(filelist, function(x) read.table(x, header =...