Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ディレクトリ C:\R\Data の 1 つのフォルダー file1.bin、file2.bin、...、および file1460.bin にファイルがあり、それらを読み取り、1 から 4 に移動するループを作成して、平均、次に 4 から 8 平均、というように 1460 まで。
複数のファイルを読み取って操作するにはどうすればよいですか? R言語では、 私はそれを理解するために数え切れないほどの時間を無駄にしています。
results <- array(dim=360) for (i in 1:360){ results <- mean(yourlist[[(i*4):(i*4+3)]]) }
mean(yourList) 呼び出しを使用した YMMV ですが、その構造は、ロードされたデータをループする方法になります。