Skip to content

Commit

Permalink
attempt to fix accessing the data within function
Browse files Browse the repository at this point in the history
  • Loading branch information
jhmigueles committed Nov 28, 2023
1 parent 20de541 commit 917ea44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/create_part1_meta.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ create_part1_meta = function(desired_outputdir = "output_test",
dir.create("output_test/results/QC", recursive = TRUE)
}
# part 1 metadata
C = data(data.calibrate)
I = data(data.inspectfile)
M = data(data.getmeta)
C = utils::data("data.calibrate")
I = utils::data("data.inspectfile")
M = utils::data("data.getmeta")
# extend M$metashort
from = as.POSIXct(M$metashort$timestamp[1], tz = "Europe/London")
timestamp = seq.POSIXt(from = from, to = from + Ndays*24*60*60, by = windowsizes[1])
Expand Down

0 comments on commit 917ea44

Please sign in to comment.