Re: [R] Shiny app Deployment not Working

2022-05-27 Thread Michael Dewey
I think people are going to need more details here. 1 where does GeneBook come from if not CRAN? 2 what is the app you are hoping to deploy, is it part of GeneBook? 3 what exactly do you mean by not showing? On 27/05/2022 07:29, ABHIRUP MOITRA wrote: I want to deploy a shiny app where I have t

Re: [R] Shiny debug mode- reort a bug R version 4.0.2

2020-08-15 Thread Jeff Newmiller
If you can provide a reproducible example that does not require RStudio to trigger the error then someone here might try to dig into this. But technically this mailing list is about the R language, not editors or contributed packages, so maybe not. RStudio injects various "helper" functions into

Re: [R] Shiny App inside R Package

2017-09-17 Thread Marc Girondot via R-help
I have this working in my package embryogrowth available in CRAN. I have a function to call the shiny app: web.tsd <- function() {   if (!requireNamespace("shiny", quietly = TRUE)) {     stop("shiny package is absent; Please install it first")   } getFromNamespace("runApp", ns="shiny")(appDir =

Re: [R] Shiny App inside R Package

2017-09-17 Thread Thierry Onkelinx
Dear Axel, I tend to place Shiny apps in the "inst" directory of the package. See https://stackoverflow.com/questions/37830819/developing-shiny-app-as-a-package-and-deploying-it-to-shiny-server Best regards, ir. Thierry Onkelinx Statisticus/ Statiscian Vlaamse Overheid / Government of Flanders I

Re: [R] Shiny install failed

2017-08-15 Thread William Dunlap via R-help
Does install.packages("shiny", type="binary") work any better? Bill Dunlap TIBCO Software wdunlap tibco.com On Tue, Aug 15, 2017 at 10:12 AM, Zack Haney wrote: > Yes windows > > How can i install from zip? > > Here is my command > > > install.packages("shiny") > Installing package into ‘C:/U

Re: [R] Shiny install failed

2017-08-15 Thread Zack Haney
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 shi

Re: [R] Shiny install failed

2017-08-15 Thread Michael Dewey
Dear Zack At a guess you are on Windows and instead of installing from the zip file you are trying to install from source. If you do not grasp the difference try posting again showing us exactly what command you used and confirm your operating system Please also post in plain text not HTML as

Re: [R] Shiny

2016-02-10 Thread David Winsemius
> On Feb 10, 2016, at 5:23 AM, Duncan Murdoch wrote: > > On 10/02/2016 7:41 AM, Venky wrote: >> Hi Team, >> >> Please anyone share the Shiny app code(Server and UI) for Multiple Linear >> Regression. With dropdown menu >> > > This is the wrong place to write for help with Shiny. I think RSt

Re: [R] Shiny

2016-02-10 Thread Duncan Murdoch
On 10/02/2016 7:41 AM, Venky wrote: Hi Team, Please anyone share the Shiny app code(Server and UI) for Multiple Linear Regression. With dropdown menu This is the wrong place to write for help with Shiny. I think RStudio runs some forums for that, and StackOverflow also answers questions a

Re: [R] Shiny help with verbatimTextOutput

2015-07-30 Thread Bert Gunter
Shiny is not R. It is an RStudio product, which is separate from R. So I think you need to post on RStudio's support forum, not here. Cheers, Bert Bert Gunter "Data is not information. Information is not knowledge. And knowledge is certainly not wisdom." -- Clifford Stoll On Thu, Jul 30, 201

Re: [R] Shiny User Group

2015-02-12 Thread Hadley Wickham
Maybe https://groups.google.com/forum/#!forum/shiny-discuss ? Hadley On Thu, Feb 12, 2015 at 9:07 AM, Doran, Harold wrote: > I found a google user group for shiny, and am curious if there is an SIG as > well. Didn't see one in my searches, but looking for an active place to ask > questions and

Re: [R] shiny datatables column filtering plugin

2014-09-03 Thread Yihui Xie
It looks like a problem of DataTables -- I cannot find a way to specify the search.regex option for individual columns. You may ask this question on the DataTables forum. Basically I was expecting this to work: .DataTable({ "search": { "regex": true }, "columnDefs": [{ "search": { "regex": tru

Re: [R] shiny datatables column filtering plugin

2014-09-03 Thread Charles Determan Jr
Thank you Yihui, this would certainly work for me however I have having trouble getting the regex to work appropriately. I am using the developmental version of shiny and have copied your code. I launch the app and the filtering of numbers works fine (i.e. 4,5) but the search for setosa and versi

Re: [R] shiny datatables column filtering plugin

2014-09-03 Thread Yihui Xie
The built-in version of DataTables in shiny has already supported numeric ranges. For a numeric column x in data, if you type a,b in the search box, the data will be filtered using a <= x <= b. The check boxes are not supported, but you can use regular expressions (more flexible) to achieve the sam

Re: [R] shiny datatables column filtering plugin

2014-09-03 Thread Charles Determan Jr
Thank you for checking Yihui, on the off chance are you familiar with any other methods to filter on multiple conditions? On Tue, Sep 2, 2014 at 11:07 PM, Yihui Xie wrote: > I just tested it and this plugin does not seem to work with the new > .DataTable() API in DataTables 1.10.x, so I guess i

Re: [R] shiny datatables column filtering plugin

2014-09-02 Thread Yihui Xie
I just tested it and this plugin does not seem to work with the new .DataTable() API in DataTables 1.10.x, so I guess it is unlikely to make it work in (the current development version of) shiny. It is not in the official list of plugins, either: http://www.datatables.net/extensions/index Regards,

Re: [R] Shiny question: what happens after hitting F5

2013-10-30 Thread S Ellison
> I > get warnings (one for each file) that look like this: > > Warning in dir.create(dir) : > > 'C:\Users\DIMITR~1.LIA\AppData\Local\Temp\RtmpklHtMJ\435e92e733e5f0 > a8a00f342d' > already exists > > It is still working. But: how could I get rid of these warnings? Delete the temporary files be

Re: [R] Shiny - can one create one RUN button?

2013-09-13 Thread Dimitri Liakhovitski
Thanks a lot, Laszlo! On Fri, Sep 13, 2013 at 6:56 AM, Zsurzsa Laszlo wrote: > Maybe this link can help you: > > http://rstudio.github.io/shiny/tutorial/#more-widgets > > This is an example with submit button. > > >

Re: [R] Shiny - can one create one RUN button?

2013-09-13 Thread Zsurzsa Laszlo
Maybe this link can help you: http://rstudio.github.io/shiny/tutorial/#more-widgets This is an example with submit button. - - László-András Zsurzsa,- - Msc. Infrom

Re: [R] Shiny error: connection reset by peer

2013-09-11 Thread Rmh
shiny uses browser features that internet explorer doesn't have. use either firefox or chrome. enter http://localhost:8100 to quit shiny, enter the escspe key in the R gui Sent from my iPhone On Sep 11, 2013, at 9:59, Dimitri Liakhovitski wrote: > Hello! > > I am learning Shiny via tutorial

Re: [R] Shiny error: connection reset by peer

2013-09-11 Thread Dimitri Liakhovitski
Thank you so much, it worked with Chrome! On Wed, Sep 11, 2013 at 10:15 AM, Rmh wrote: > shiny uses browser features that internet explorer doesn't have. > > use either firefox or chrome. > enter > http://localhost:8100 > > to quit shiny, enter the escspe key in the R gui > > Sent from my iPhon