Displaying 20 results from an estimated 5000 matches similar to: "Finding inter-function dependencies within a package"
2008 Apr 17
2
Design and analysis of mixture experiments
Hi,
I'm interested in experimental design and data analysis on mixtures, like
cake recipes where the sum of the components is fixed; e.g.
<http://www.itl.nist.gov/div898/handbook/pri/section5/pri54.htm>.
I can't believe that R doesn't have facilities to design and analyse such
experiments, but I haven't been able to find them (I have looked quite
hard!). Can anyone point
2011 Aug 11
2
UNC windows path beginning with backslashes: normalizePath bug??
Hi,
Back in June I posted the message below, but had no replies. I've made a
little progress since then so this is to update anyone interested (!) and to
ask for comments.
Brief problem statement:
Under Windows, some parts of R don't handle UNC paths beginning with
backslashes. Specifically
a) Sys.glob() fails to find some files breaking (e.g.) Rcmdr plugins
2009 Dec 22
4
Problem with expand.grid
Hi All,
This example code
----------------
dDF <- structure(list(y = c(4.75587, 4.8451, 5.04139, 4.85733, 5.20412,
5.92428, 5.69897, 4.78958, 4, 4), t = c(0, 48, 144, 192, 240,
312, 360, 0, 48, 144), Batch = c(1, 1, 1, 1, 1, 1, 1, 1, 1, 1
), T = c(2, 2, 2, 2, 2, 2, 2, 2, 2, 2), pH = c(4.6, 4.6, 4.6,
4.6, 4.6, 4.6, 4.6, 4.6, 4.6, 4.6), S = c(0, 0, 0, 0, 0, 0, 0,
0, 0, 0), N = c(0, 0, 0, 0,
2009 Dec 04
1
multidimensional point.in.polygon??
Hi,
I seek to identify those points in/outside a multidimensional convex hull
(geometry::convhulln). Any suggestions?
Background just in case I'm going down a really wrong road:
Given an observed data set with one dependent/observed variable (Y) and
multiple (3 to 10) independent/design variables (X1, X2, ...) I want to
increase the number of points by interpolating. I'm using
2011 Jan 17
1
median by geometric mean -- are we missing what's important?
Folks:
I know this may be overreaching, but are we missing what's important?
WHY do the zeros occur? Are they values less then a known or unknown
LOD? -- and/or is there positive mass on zero? In either case, using
logs to calculate a geometric mean may not make sense. Paraphrasing
Greg Snow, what is the scientific question? What is the model?
Cheers,
Bert
On Mon, Jan 17, 2011 at 9:13 AM,
2010 Jan 26
1
update.packages on MS Windows with //server/share paths
Hi,
> update.packages(ask='graphics')
gives me multiple warning (one per updated package?) similar to ...
Warning: unable to move temporary installation
'\\Server02\stats\R\library\2.10\file3de56e0d\locfit' to
'\\Server02\stats\R\library\2.10\locfit'
The final, updated, folders do not end up where they should be. I can move
them 'by hand', but it is an
2008 Aug 18
1
"nested" getInitial calls; variable scoping problems
Hi All,
Another nls related problem (for background, I'm migrating a complicated
modelling package from S-plus to R).
Below I've reduced this to the minimum necessary to demonstrate my problem
(I think); the real situation is more complicated.
Two similar selfStart functions, ssA and ssB.
The 'initial' function for ssB modifies its arguments a little and then
calls getInital
2009 Sep 21
1
How to use nls when [selfStart] function returns NA or Inf??
Hi Everyone,
I posted this a couple of weeks ago with no responses. My interface (via
gmane) seemed a bit flakey at the time, so I'm venturing to repost with some
additional information.
I'm trying to write selfStart non-linear models for use with nls. In these
models some combinations of parameter values are illegal; the function value
is undefined.
That's OK when calling the
2010 Oct 11
2
Nonlinear Regression Parameter Shared Across Multiple Data Sets
I'm working with 3 different data sets and applying this non-linear
regression formula to each of them.
nls(Y ~ (upper)/(1+10^(X-LOGEC50)), data=std_no_outliers,
start=list(upper=max(std_no_outliers$Y),LOGEC50=-8.5))
Previously, all of the regressions were calculated in Prism, but I'd like to
be able to automate the calculation process in a script, which is why I'm
trying to move to
2012 Sep 04
3
Tendonitis and R users
Hello
This request asks something beyond the technicalities of the R language, I would like to ask you wonderful people if you have ever suffered as programmers ( or de facto programmers like myself though I am a 'research assistant') from tendonitis and how you coped with it, i have golfer's elbow on both sides. Any resources?
Pancho Mulongeni
Namibia
2008 Oct 07
3
Automatic code diagramming for R?
Greetings -
Is anyone aware of an automatic code diagrammer/flow chart creator that
works for the R language (either a contributed package, or external
software)? I need to explain some code structure of a package I'm working
on to non-R users, and would find it extremely helpful to have such a
program similar to, for example, Visustin (
http://www.aivosto.com/visustin.html ). I can do it
2015 Jul 17
1
Improvements (?) in stats::poly and stats::polym.
Dear Keith,
>>>>> <Keith.Jewell at campdenbri.co.uk>
>>>>> on Thu, 16 Jul 2015 08:58:11 +0000 writes:
> Dear R Core Team,
> Last week I made a post to the R-help mailing list
> ?predict.poly for multivariate data?
> <https://stat.ethz.ch/pipermail/r-help/2015-July/430311.html>
> but it has had no responses so I?m
2008 Apr 07
3
findGlobals on apply
Hi the list,
Considere the following:
f <- function(x){apply(x,2,mean)}
findGlobals(f)
findGlobals consideres mean as a global variable, which it is not.
Is there a way to tell to findGlobals that mean is a function ?
Thanks
Christophe
2018 Apr 19
2
Question
On 15/04/2018 17:26, Marc Girondot via R-help wrote:
> Le 15/04/2018 ? 17:56, alireza daneshvar a ?crit?:
>> break-down point
>
> Can you explain more what you plan to do and give an example of what you
> have tried to do until now to do a "break down point" in R. Perhaps a
> "break down point" is common in your field, but I have no idea about
> what
2007 Dec 16
2
clean programming
Hello the list,
I am trying to write a "cleanProgramming" function to test the
procedure I use. For example, I want to be sure that I am not using
globals variables. The function "findGlobals" detect that.
To list the globals used in function "fun", the syntax is :
"findGlobals(fun,FALSE)$variable"
My problem is that I want to use it in a function,
2011 Oct 09
2
"What Calls What" diagram. Flow Chart?
I don't know the right computer science words for this question, I'm
afraid. Apology in advance.
How do you find your way around in somebody else's code? If the user
runs a specific command, and wants to know how the data is managed
until the result is returned, what to do ?
I've tried this manually with tools like mtrace and browser. This is a
bit frustrating because the
2010 Jun 10
2
Capturing buffered output from Rterm
In MS Windows I
a) invoke Rterm from a batch file (test.bat)
b) to execute commands from a script (m:\test.rsc)
c) capturing output in a log file (m:\test.log)
BUT if the script results in an error the error message is NOT written to
the log file, leaving me problems when the error is from a complicated
function.
Simplified example:.
test.bat ------------------------
REM ensure
2018 Apr 19
0
Question
Hi,
I think he's talking about how much a statistical estimator is influenced by extreme datapoints, e.g.
https://en.m.wikipedia.org/wiki/Robust_statistics#Breakdown_point
Olivier
--
Olivier Crouzet
Assistant Professor
@LLING UMR6310 - Universit? de Nantes / CNRS
Guest Scientist
@UMCG - University Medical Center Groningen / RijksUniversiteit Groningen
> Le 19 avr. 2018 ? 11:00,
2011 Jan 06
2
Global variables
Dear R-users,
Is there a way I can prevent global variables to be visible within my
functions?
Sebastien
2006 Mar 31
3
Function dependency function
Hi,
Is there a function taking a function as an argument, which returns all the
functions it calls, and all the the functions those functions call, and so
on? I could use Rprof, but that would involve executing the function,
which may miss some branches of code. I'd really like a function which
looks at the source code to work out all the functions that could possibly
be called. When I