similar to: Shiny

Displaying 20 results from an estimated 200 matches similar to: "Shiny"

2013 Sep 10
1
Próxima reunión del "Grupo de Usuarios de R de Madrid - 26-Septiembre"....
Hola, El próximo 26-septiembre comenzamos la nueva temporada de reuniones del "Grupo de Usuarios de R de Madrid". Esta temporada trae algunas novedades, una de ellas es que intercambiaremos el lugar de las reuniones entre la Facultad de Ciencias de la UNED y ahora el bar S10 en el que esperamos mantener unas reuniones más próximas y si cabe informales. Por ahora tenemos un par de
2013 Dec 20
0
Resumen de R-help-es, Vol 58, Envío 26
Hola, Shiny utiliza la función selectInput en ui.R (donde se declaran los métodos y las etiquetas que se muestran en pantalla) y la variable input$nombre_usado_en_ui para tomar el valor elegido en el server.R Puedes consultar el tutorial de shiny en: http://rstudio.github.io/shiny/tutorial/#shiny-text Por ejemplo (copiado de ahí) en ui.R sidebarPanel( selectInput("dataset",
2013 Oct 01
0
Disponibilidad de material de la reunión del 26-Sep-2013 "Grupo de Usuarios de R de Madrid"...
Hola, Ya tenéis disponible el material que se presentó en la última reunión del "Grupo de Usuarios de R de Madrid". - - Carlos Ortega <http://www.qualityexcellence.es/> / Francisco Mauro: "'Unos cuantos modelos dinámicos y caóticos (con shiny)''". Se expondrán varios sistemas dinámicos y muy conocidos en la literatura utilizando la
2017 Oct 09
3
Merge me agrega siempre las columnas
Buenas, Tengo dos data.frames de la siguiente manera library(data.table) id<-c("a1","a2","a3","a4") id2<-c("a2","a3","a1","a4") y<-c(1,2,3,4) z<-c(3,5,6,7) k<-c(1,3,8,7) df1<-data.table(id,y,z) id<-c("a2","a3","a1","a4") df2<-data.table(id,x,y) Quiero
2014 Jun 23
2
Resumen de R-help-es, Vol 64, Envío 33
Hola, Marta, Por lo que he podido ver tus datos ya tienen calculados las tasas de verdaderos y falsos positivos (TPR y FPR). También parece que los tienes ordenados por la variable FishSpeed y supongo que también por las que parecen marcas de tiempo. No necesitas ROCR porque con un simple plot te sale algo parecido a una curva. Eso sí, veo que son medidas repetidas en el tiempo para cada valor de
2011 Sep 20
10
Fichero de parametrización
Hola,   No encuentro ningún enlace en el cual poder ver ejemplos de ficheros de texto destinados al paso de parámetros (para suplir la carencia de interfaz gráfica) y me vendría bien para perfeccionar mi estilo. Entiendo que la estructura debe facilitar la importación de esa info desde el programa en R, y a su vez facilitar la tarea al usuario final, que es quien indica el valor de los parámetros.
2014 Oct 19
3
Warnings en GLMM (lme4)
Hola, Soy nuevo manejando R y no tengo mucha experiencia. Estoy intentando modelar una función que me relacione el nº de cebas (nº de presas que los padres traen a los pollos) con el tamaño de parche de un bosque (factor categórico; 2 niveles= grande y pequeño). Al ser un conteo (nº de cebas) he pensado utilizar familia= poisson con link= logarítmico. He construido un GLMM con: Nº de cebas
2013 Apr 01
5
Próxima reunión del "Grupo de Usuarios de R de Madrid" - Jueves 4-Abril....
Buenas a todo, Una breve nota para comentaros que este jueves (4-Abril) mantendremos la siguiente reunión del "Grupo de Usuarios de R de Madrid". La agenda prevista es la siguiente: (Prevista) Jueves 4 de Abril de 2013 - *Lugar:* Facultad de Ciencias - UNED. C/ Senda del Rey, 9.<http://portal.uned.es/portal/page?_pageid=93,688166&_dad=portal&_schema=PORTAL> -
2005 Mar 09
1
Re: Tons of shiny new stuff (Tobias Luetke)
Tobias, I would have left a comment on your blog, a thanks really, except that the comment submit form is throwing an error. So, thanks for the cool tools, especially the login generator. After deleting the old generator the new one worked and passed all tests in a snap. Like Tim Lucas said, the Hieraki code base is a wonderful resource for someone learning Rails. Much appreciated.
2011 Jan 20
0
Haegemonia (Hegemonia) and shiny surfaces? Effects missing?
Hello! :) Explanation of the problem: For several years now it is impossible to render "shiny" (glossy, vertex shaders), effects on ships, planets and generally metallic surfaces in Haegemonia. The problem is that newer graphics drivers on Windows systems changed/lack a feature the game exploited to get these effects. Way back when I was mailing the developers of the game, I was told
2013 Mar 16
0
Is it possible to create a html file by using shiny in Windows ?
Dear R users, I have just started using Shiny in R. I can run the program using R on my local computer but I don't know how can I create the html file on my local server. Can you guys suggest how can I proceed to create a html file on my computer in Windows interface ? Thanks. Janesh [[alternative HTML version deleted]]
2017 Jul 19
0
Problem in shiny writing a .txt file
On 19/07/17 19:19, Ana Bel?n Mar?n wrote: > Hi all! > > I'm developing a shiny app and I have problems when I wanna write a .txt > file. <SNIP> " ... when I *want to* write ..." The language of this mailing list is *English*, not Valspeak. cheers, Rolf Turner -- Technical Editor ANZJS Department of Statistics University of Auckland Phone: +64-9-373-7599
2017 Sep 16
1
Help with shiny::reactiveFileReader()
Hello, Is it possible to execute functions (outside the ui and server shiny environments) after reading data using reactiveFileReader() ? For example, I'd like to fit a linear model on data read using reactiveFileReader() outside ui/server. library(shiny) library(dplyr) bigData <- reactiveFileReader(1000, NULL, 'data.csv', read.csv) fit <- lm(y ~., data = bigData()) ui
2018 Feb 23
0
Mapedit::selectMap in shiny map.
I would like to select polygons from an existing spatial polygon data set interactively in a shiny leaflet map. The process is straightforward in leaflet/ mapedit, however I need to include the procedure in a shiny app map interface. I cannot work out how to incorporate the selectMap() in the shiny app. An error is returned: Here is some toy code showing the code in using leaflet locally:
2018 Jan 10
0
[shiny] How to read current URL address
Dears, I am trying to read the URL name (i.e "www.google.com") that I was redirected by my own code. What I already found that could help: session$clientData$url_protocol session$clientData$url_hostname session$clientData$url_pathname session$clientData$url_port session$clientData$url_search But then when I try to use this code in my server function the bellow Error appears: >
2001 Jul 29
0
ADV: Other silly shiny postmasters will exclude monthly beneath hackers.
Eddie will confront the surreptitious Blowfish and relay it over its doorway. Will you examine on the room, if Tim hatefully binds the input? If the moronic llamas can delete admiringly, the odd client may build more data buss. Where doesn't Rose kick daily? Try starting the field's insecure admin and Gay will facilitate you! The analyst furiously learns the dense cafe. Many
2020 Nov 23
1
Cargar data frame en app shiny
---------- Forwarded message --------- De: Ruben Coca <rcocam en fedefarma.com> Date: lun., 23 nov. 2020 14:59 Subject: RV: Cargar data frame en app shiny To: ruben.coca en gmail.com <ruben.coca en gmail.com> Hola a todos, Tengo problemas con una app de shiny. Al iniciarla me sale este mensaje en el navegador: An error has occurred The application failed to start. The application
2019 Jan 12
0
Installing Rstudio and shiny free server on Debian
Chris, I fear you may be overcomplicating things. RStudio tends to just work; the .deb files are also large and "mostly self-contained" -- so that generally only require one or two other packages you should find without trouble. Of course I cannot fully speak to your experience as I do not run Debian stable (mostly current Debian (ie "testing") or Ubuntu (ie now 18.10) for
2019 Jan 12
0
Installing Rstudio and shiny free server on Debian
On 12 January 2019 at 20:30, Chris Evans wrote: | I wonder if I'm hitting problems you're not seeing not only because of running stretch/stable but also because of running the i386 version. I suspect most people are on 64 bit systems now. Cannot speak to i386. I gave up on it relatively late given that I always had lower-memory laptops. It may be time to let that one go. I can only
2015 Aug 26
1
declaring dependencies of shiny app in inst/
Hi there thanks for the answer. >> But are their better ways / best practices? >You'll have to ask questions like these on a Shiny forum. Done. New thread there: https://goo.gl/17hsAa >> On a related topic: are there plans of formally incorporating shiny apps in the structure of a R package, so that the checks will run through the code of the apps as well? > No, but it