Displaying 20 results from an estimated 2000 matches similar to: ": Model formula question"
2006 Feb 21
6
How to sum values across multiple variables using a wildcard?
I have a dataframe called "data" with 5 records (in rows) each of
which has been scored on each of many variables (in columns).
Five of the variables are named var1, var2, var3, var4, var5 using
headers. The other variables are named using other conventions.
I can create a new variable called var6 with the value 15 for each
record with this code:
> var6=var1+var2+var3+var4+var5
2015 Apr 29
2
Formula evaluation, environments and attached packages
Hi!
Some time ago, I replaced calls to library() with calls to
requireNamespace() in my package logmult, in order to follow the new
CRAN policies. But I just noticed it broke jackknife/bootstrap using
several workers via package parallel.
The reason is that I'm running model replicates on the workers, and the
formula includes non-standard terms like Mult() which are provided by
gnm. If gnm
2006 Dec 14
3
Model formula question
Hi all,
I'm not familiar with R programming and I'm trying to reproduce a
result from a paper.
Basically, I have a dataset which I would like to model in terms of
successive increments, i.e. (y denote empirical values of y)
y_1 = y1,
y_2 = y1 + delta1,
y_3 = y1 + delta1 + delta2.
...
y_m = y1 + sum_2^m delta j
where delta_j donote successive increments in the y-values, i.e.
delta
2005 Jun 08
0
[BUGME 4683] oops at log_do_checkpoint+0xa1/0x230
Hello,
I was wondering if we can get some help in resolving this bug. It was
reported earlier and logged in bugme.osdl.org
http://bugme.osdl.org/show_bug.cgi?id=4683
The problem is kernel oops at log_do_checkpoint() due to NULL buffer_head. This
could be because of some race in journalling code for which I don't have much
clue. There is kdump available for analysis as mentioned in the
2013 Aug 22
1
Confusion about Depends:, Imports:, Enhances:, import(), inportFrom()
In checking my vcdExtra package, the following NOTE newly appeared
(R-Forge, using R version 3.0.1 Patched (2013-08-20 r63635))
Package in Depends field not imported from: ?gnm?
These packages needs to imported from for the case when
this namespace is loaded but not attached.
In the DESCRIPTION file, I have
Depends: R (>= 2.10), vcd, gnm (>= 1.0.3)
In NAMESPACE:
# we are a vcd
2006 Mar 31
3
Position For Ruby on Rails Consultant
Hello Everyone,
My name is Prashant and I head the placement division with ANZ Solutions. We
work with close to 53 clients all over the country and help them with their
staffing requirements. I like to network with strong technical people like
you and like to associate myself with respect to your career plans. Please
let me know and I will give you a call. We can help you for any kind of
2007 Jan 16
1
nonlinear regression: nls, gnls, gnm, other?
Hi all,
I'm trying to fit a nonlinear (logistic-like) regression, and I'd like
to get some recommendations for which package to use.
The expression I want to fit is something like:
y ~ A * exp(X * Beta1) / (1 + exp(-(x + X * Beta2 - xmid)/scal))
Basically, it's a logistic function, but I want to be able to modify
the saturation amplitude by a few parameters (Beta1) and shift the
2003 Jan 16
0
[PATCH] Using qstr in ext3_get_parent()
Hi
In ext3_get_parent(), quick string (struct qstr) can do the job, in place
of declaring a dentry on stack. Following patch does this and saves few
bytes on kernel stack.
Thanks,
Maneesh
namei.c | 69 ++++++++++++++++++++++++++++++----------------------------------
1 files changed, 33 insertions(+), 36 deletions(-)
diff -urN linux-2.5.58-base/fs/ext3/namei.c
2007 Apr 09
1
How to solve differential and integral equation using R?
Hello,
I want to know if there are some functions or packages to solve differential
and integral equation using R.
Thanks.
Shao chunxuan.
[[alternative HTML version deleted]]
2008 Feb 22
1
Enquiry about Speex Encoder and decoder in C#
Hi,
How to implement the speex codec in C#?
I want to use it in ,Net Compact framewok 2.0 so how
can I use speeex for it?
Please help me in this matter.
Thanks And Regards.
Kaustubh Deshpande
5, 50, 500, 5000 - Store N number of mails in your inbox. Go to http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html
2008 Mar 05
2
update rysnc 3.0 on ubuntu 7
I am runninng rsync on Ubuntu. It was installed using apt-get install rysnc.
I note that the package has not yet been updated to rysnc 3.0.
I would like to update using the tar but I am confused how to update the
existing installation.
On this machine, I am mainly using rsync to send to a cwrsync server (which
I have updated already). Can I just overwrite the rsync executable?
Any help
2001 May 26
3
OpenSSH ports and crypto issues
hi,
I am working on a windows NT version of openssh. It's mostly working
(ssh.exe, ssh-keygen.exe to be precise), except for some minor UI issues.
however, i have a couple of questions about making the port available:
1. minor issue: My port is based on the openbsd ssh source (2.5.2). Is
this acceptable, or should I base it on the portable source ? I think I
know the answer to that one. If
2008 Aug 30
2
Strange sender log file characters
Is there a reason I get the following strange characters in my log file?
2008/08/29 19:48:13 [7138] Number of files: 42321
2008/08/29 19:48:13 [7138] Number of files transferred: 78
2008/08/29 19:48:13 [7138] Total file size: +)*)/.+),00//,+)),( bytes
2008/08/29 19:48:13 [7138] Total transferred file size: +)*)/.+),(*0,+-.,0'
bytes
2008/08/29 19:48:13 [7138] Literal data: -+,((0),' bytes
2004 Aug 06
2
libshout2, ices0-3 and ices2 on Win32. Announce
Hi Abhijit
I can't answer your questions but I would be very interested in a fully
working binary of Ices2 for Win32 once it's ready. Thanks for the
effort.
Best regards,
Ross Levis
====================================
StationPlaylist.com
http://www.stationplaylist.com
Low-cost music scheduling, live assist & automation software.
====================================
Abhijit
2015 Apr 29
0
Formula evaluation, environments and attached packages
Hi Milan,
I expect I may be able to do something about the way the terms are
evaluated, to ensure the evaluation is done in the gnm namespace (while
still ensuring the variables can be found!).
In the meantime, I think the following will work:
Mult <- gnm::Mult
f <- Freq ~ Eye + Hair + Mult(Eye, Hair)
gnm::gnm(f, family=poisson, data=dat)
Hope that helps,
Heather
On Wed, Apr 29, 2015,
2013 Sep 12
6
declaring package dependencies
I received the following email note re: the vcdExtra package
> A vcd update has shown that packages TIMP and vcdExtra are not
> declaring their dependence on colorspace/MASS: see
>
> http://cran.r-project.org/web/checks/check_results_vcdExtra.html
But, I can't see what to do to avoid this, nor understand what has
changed in R devel.
Sure enough, CRAN now reports errors in
2008 May 09
1
str and class
In previous versions of the gnm package, the terms component of "gnm"
objects had a "classID" attribute. This caused problems when used with
str as the following simple example illustrates:
> x <- 1
> attr(x, "classID") <- "type1"
> str(x)
Class 'type1' Class 'type1' Class 'type1' Class 'type1' Class
2017 Aug 14
2
clang-tidy : Modify cert-err60-cpp configuration
We want to modify the aforementioned check so that it does not flag the
exceptions that aren't nothrow copy constructible/assignable.
This page
http://clang.llvm.org/extra/clang-tidy/#using-clang-tidy
tells me to dump the configs of all the checks using
%clang-tidy -checks=* -dump-config
but it does not mention the cert-err60-cpp.
How do I modify the configuration of this check so that it
2007 Mar 20
2
Any R function for self-controlled case series method /effect absorption?
Hello,
Has anyone written R functions for applying self-controlled case series
methods (http://statistics.open.ac.uk/sccs/).
In fact only thing needed is to modify glm function to allow absorption
of effect. Eg. in Poisson model individual effect is used as factor, but
it is considered as nuisance term where parameter estimates are not needed.
Could anyone point how absorbing individual
2010 Oct 13
5
Poisson Regression
Hello everyone,
I wanted to ask if there is an R-package to fit the following Poisson
regression model
log(\lambda_{ijk}) = \phi_{i} + \alpha_{j} + \beta_{k}
i=1,\cdots,N (subjects)
j=0,1 (two levels)
k=0,1 (two levels)
treating the \phi_{i} as nuinsance parameters.
Thank you very much
--
-Tony
[[alternative HTML version deleted]]