Displaying 4 results from an estimated 4 matches for "alongisd".
Did you mean:
alongisde
2009 Feb 24
1
Installing archived package alongisde current one
Hi list,
I'd like to install an archived version of lmer to compare results with
the current version. I guess one way to do this would be to download the
source, rename the package and then install it. Is there a better
alternative?
--
http://mutualism.williams.edu
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type:
2011 Jun 07
4
Sorting DataFrames
I am a new user, and i am trying to sort out a data frame.
I have for example bins of data. Within each bin i have multiple counts of animals and the depths at which these count were taken. How would I summarise this to being only the maximum count per bin alongisde the corresponding height (but not the maximum depth - i want the depth at which the maximum number of animals occurs).
Thank you
[[alternative HTML version deleted]]
2015 Aug 26
1
declaring dependencies of shiny app in inst/
...a script in the tests directory.
Yes, though in this case tests would merely check that the code can be sourced without error. I was thinking more of looking for unstated dependencies in code effectively used by the package, though indirectly. I guess it is only relevant if distributing shiny apps alongisde packages becomes common practice. I am not sure how trendy it is yet, but wouldn't be surprised to see it become increasingly frequent.
Cheers
Thibaut
> Duncan Murdoch
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