search for: shini

Displaying 20 results from an estimated 642 matches for "shini".

Did you mean: shiny
2014 Mar 18
2
Taller "Shiny. Entornos web con R" (presencial y streaming)
Desde la Sección de Apoyo Estadístico del Servicio de Apoyo a la investigación (SAI) de la Universidad de Murcia, te invitamos al Taller que impartiremos el próximo _26 de Marzo de 16h a 20h_, titulado : /"Shiny. Entornos web con R"/ * Lugar:* Aula *Bisbita* en la *Fac de Biología*, a las 16:30h _Se podrá seguir en directo vía streaming_ Reserva tu puesto desde caldum
2013 Jul 22
1
fail to install shiny package in R 3.0.1 on Ubuntu
Hello there, I have been used shiny package on Windows without any problem. Recently I switched to Linux OS(Ubuntu 12.04), and installed the latest R version 3.0.1. But I couldn't install "shiny" for some reasons. Here are the error message: ** preparing package for lazy loading Error : package ‘codetools’ was built before R 3.0.0: please re-install it Error : unable to load R
2014 Sep 29
2
recomendación de librerías para mapas en Shiny
Buenas: Lo limitante en shiny no es el número de usuarios sino el número de desarrolladores. Incluso si los desarrolladores son de confianza es suficiente con la versión estándar del servidor shiny. La versión de pago lo que añade es control sobre lo que los desarrolladores pueden publicar. Además existe la alternativa de publicar lo ficheros en un servidor "web estándar" y que
2017 Sep 17
2
Shiny App inside R Package
Dear List, I have a wrapper function that creates a Shiny App, as illustrated below. I'd like to include the function myApp() inside a package. I'd appreciate your guidance here, as I could not find good instructions on this online. myApp <- function(x) { require(shiny) shinyApp( ui = fluidPage( sidebarLayout( sidebarPanel(sliderInput("n",
2016 Jun 22
3
Shiny
Estoy trabajando generando mapas a partir de un conjunto de datos. No puedo encontrar la forma de manipular el tamaño de los mapas. He buscado en páginas de Shiny y no pude encontrar una solución ¿Alguien me puede orientar? No he puesto una imagen para no recargar el servidor de correo. Saludos y gracias -- Eduardo [[alternative HTML version deleted]]
2014 Sep 29
2
recomendación de librerías para mapas en Shiny
Hola: En la versión gratuita no existe límites en el número de usuarios y tampoco existe límites en el número de desarrolladores. Con la versión gratuita para publicar una aplicación debes subirla al servidor, es decir, es necesario acceso a nivel de sistema al servidor y allí se ejecuta con los permisos que tenga el usuario que ejecuta el servidor shiny. Esto supone un riesgo potencial de
2017 Oct 08
2
load() failed to load .Rdata file in AWS-Ububtu
Thanks Eric for your pointer. However I just altered the argument of load() function a little bit to get that loaded. Below is the line what I tried. ubuntu at ip-172-31-23-148:~$ R R version 3.4.2 (2017-09-28) -- "Short Summer" Copyright (C) 2017 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO
2017 Oct 09
1
load() failed to load .Rdata file in AWS-Ububtu
Hi Eric, thanks for your further pointer. I have put a line with load() function just as an illustration of a bigger project of mine, which appears failing due to load() function issue. If I comment out that line my shiny app is working correctly locally and globally. otherwise, locally my shiny app is working but not with AWS. On Mon, Oct 9, 2017 at 12:37 PM, Eric Berger <ericjberger at
2017 Oct 09
0
load() failed to load .Rdata file in AWS-Ububtu
Hi Christofer, The shiny code you have written does not depend on loading the Dat.RData file. I commented out that line and ran your shiny app on my machine and it works fine. What happens if you comment out (or remove) the line load("/home/ubuntu/Dat.RData) Does your shiny app still fail? If so, then your problem is quite basic with your AWS setup. Try to work through a simple
2018 Mar 04
2
problema con shiny
Carlos el código es el ejemplo de shiny: # # This is a Shiny web application. You can run the application by clicking # the 'Run App' button above. # # Find out more about building applications with Shiny here: # # http://shiny.rstudio.com/ # #setwd("C:/curso 2017-18/curso R/shiny/prueba1") library(shiny) # Define UI for application that draws a histogram ui <-
2018 Feb 02
3
Alternativa Shiny server en windows
Buenas He visto que shiny server no es compatible con sevidores windows. ¿Existe algun paquete en R que sea parecido a Shiny, para correr en un servidor? Gracias Jesús [[alternative HTML version deleted]]
2018 Mar 04
4
problema con shiny
Estimados compañeros tengo un problema con shiny. Es un problema local de mi ordenador, porque en otro va si problemas pero no consigo saber ¿cómo arreglarlo?. He instalado incluso la nueva versión de Rstudio. Os explico: 1) lanzo el programa app.R, el ejemplo de shiny e intenta mostrar los resultados pero si hago: print(environment(show)) da como resultado Error in func(fname, ...) : app.R did
2014 Sep 27
2
recomendación de librerías para mapas en Shiny
Muchas gracias Carlos, que rápidez!!, a ver que consigo, ya os pasaré el link! El 27 de septiembre de 2014, 19:18, Carlos Ortega <cof en qualityexcellence.es> escribió: > Hola Miguel, > > Aquí tienes algunos ejemplos: > > > http://freigeist.devmag.net/r/819-fracking-in-your-neighborhood-shale-oil-and-gas-economic-impact-map.html > > >
2017 Aug 15
1
Shiny install failed
Yes windows How can i install from zip? Here is my command > install.packages("shiny") Installing package into ?C:/Users/Zack/Documents/R/win-library/3.4? (as ?lib? is unspecified) There is a binary version available but the source version is later: binary source needs_compilation shiny 1.0.3 1.0.4 FALSE installing the source package ?shiny? trying URL
2017 Oct 07
2
load() failed to load .Rdata file in AWS-Ububtu
Hi again, I hope this is the right place to post my question on running R within Ubuntu, however if not, any pointer on right distribution list will be helpful. I am currently using R in Ubuntu which is hosted in Amazon - AWS. I have a .Rdata file in AWS which I am trying to load in R. Used following code, however, fails to load showing some permission issue. However that same .Rdata file is
2015 Aug 26
2
declaring dependencies of shiny app in inst/
Dear all, I have a package implementing a shiny app, putting the R code of the app (server.R and ui.R) in inst/... and then having a simple function merely starting the app with something along the lines of: runApp(system.file("inst/...")) However, the app itself uses functions from packages which are not used elsewhere in the code. What is the best way to declare these dependencies
2020 Nov 07
4
Data Table not rendering properly using R shiny
Hi All, I have a data output as below.I want to display them in an interactive html report using shiny but the data table is not rendering properly and instead giving NA values. max_usage_hours_per_region<-setNames(aggregate(df3_machine_region$sum_as_hours~df3_machine_region$Region,df3_machine_region,max),c("Region","Sum_as_Hours")) Region Sum_as_Hours 1 Africa 1156.0833
2020 Nov 07
4
Data Table not rendering properly using R shiny
Hi All, I have a data output as below.I want to display them in an interactive html report using shiny but the data table is not rendering properly and instead giving NA values. max_usage_hours_per_region<-setNames(aggregate(df3_machine_region$sum_as_hours~df3_machine_region$Region,df3_machine_region,max),c("Region","Sum_as_Hours")) Region Sum_as_Hours 1 Africa 1156.0833
2017 Aug 15
2
Shiny install failed
Very New to R trying to get setup but when i try to install shiny i get trying URL 'http://cran.rstudio.com/src/contrib/shiny_1.0.4.tar.gz' Content type 'application/x-gzip' length 2329723 bytes (2.2 MB) downloaded 2.2 MB Warning in install.packages : running command '"C:/PROGRA~1/R/R-34~1.1/bin/x64/R" CMD INSTALL -l
2014 Sep 27
2
recomendación de librerías para mapas en Shiny
Hola Estoy ahora mismo en el MADData <http://www.maddata.es/>, y en proceso de hacer un Shiny, quiero meterle un mapa con los puntos de medida del tráfico y el tráfico. Pero como novato quería ver si me recomendais alguna librería para hacer mapas y embeberlos en shiny, ya sea googlemaps, leaflet, cartodb... y cualquier enlace a buena documentación es muy bien recibido! :-) Miguel