Spaces:
Sleeping
Sleeping
Commit
·
83e30f2
1
Parent(s):
bd9b5b7
otro intento
Browse files- r_shiny_app/server.R +2 -3
r_shiny_app/server.R
CHANGED
@@ -567,9 +567,8 @@ shinyServer(function(input, output, session) {
|
|
567 |
path = file.path(DEFAULT_PATH_WANDB_ARTIFACTS, ts_ar$metadata$TS$hash)
|
568 |
print(paste0("Reactive tsdf | Read feather ", path ))
|
569 |
flush.console()
|
570 |
-
|
571 |
-
df =
|
572 |
-
#df <- read_feather(path, as_data_frame = TRUE, mmap = TRUE) %>% rename('timeindex' = `__index_level_0__`)
|
573 |
t_end = Sys.time()
|
574 |
print(paste0("Reactive tsdf | Read feather | Execution time: ", t_end - t_init, " seconds"))
|
575 |
flush.console()
|
|
|
567 |
path = file.path(DEFAULT_PATH_WANDB_ARTIFACTS, ts_ar$metadata$TS$hash)
|
568 |
print(paste0("Reactive tsdf | Read feather ", path ))
|
569 |
flush.console()
|
570 |
+
path = ts_ar$download()[0]
|
571 |
+
df <- read_feather(path, as_data_frame = TRUE, mmap = TRUE) %>% rename('timeindex' = `__index_level_0__`)
|
|
|
572 |
t_end = Sys.time()
|
573 |
print(paste0("Reactive tsdf | Read feather | Execution time: ", t_end - t_init, " seconds"))
|
574 |
flush.console()
|