Spaces:
Sleeping
Sleeping
Commit
·
bd9b5b7
1
Parent(s):
0d2915f
corrigiendo llamada a to_df
Browse files- r_shiny_app/server.R +1 -1
r_shiny_app/server.R
CHANGED
@@ -568,7 +568,7 @@ shinyServer(function(input, output, session) {
|
|
568 |
print(paste0("Reactive tsdf | Read feather ", path ))
|
569 |
flush.console()
|
570 |
ts_ar_artifact = ts_ar$download()
|
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"))
|
|
|
568 |
print(paste0("Reactive tsdf | Read feather ", path ))
|
569 |
flush.console()
|
570 |
ts_ar_artifact = ts_ar$download()
|
571 |
+
df = ts_ar_artifact$to_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"))
|