Displaying 17 results from an estimated 17 matches for "respecify".
2006 Sep 14
12
Specify and respecify
Hello Puppet users,
I had talked with Luke about this scenario and was wondering how others
would/are handling something like this.
Imagine a scenario where all servers will have a specific postfix
configuration except for a server or two or three. So, you want to define
a file "/etc/postfix/main.cf" and specify the source from your dist tree.
But for those exceptional servers,
2007 May 03
1
Bayesian logistic regression with a beta prior (MCMClogit)
...hape1,shape2, log=T)) }
posterior <- MCMClogit(nausea~nsaid*diuretic, data=w,
verbose=2000,burnin = 1000, mcmc = 10000,
user.prior.density=logpriorfun,shape1=1,shape2=1)
user.prior.density(beta.start) == -Inf.
Error in MCMClogit(nausea ~ nsaid * diuretic, data = w, verbose = 2000, :
Respecify and call MCMClogit() again.
--
View this message in context: http://www.nabble.com/Bayesian-logistic-regression-with-a-beta-prior-%28MCMClogit%29-tf3684970.html#a10300145
Sent from the R help mailing list archive at Nabble.com.
2007 Apr 05
1
changing existing graphs optimally
...a round about route with graphs in that if
i want to change the scale to log, I have to to a "reset" with add=F, then
program things to be redrawn from scratch - bad coding basically:P
in plot(), the first arguement it needs is data - how do you reference whats
already there, rather than respecifying (or am i supposed to use a different
function?)
thanks for any pointers!
--
View this message in context: http://www.nabble.com/changing-existing-graphs-optimally-tf3529483.html#a9849622
Sent from the R help mailing list archive at Nabble.com.
2007 Feb 14
1
se.contrast confusion
...for all the contrasts
and their interactions. The question, however, is how to test the
significance of the contrasts, which is to say, compute the standard errors
and apply them to coef(fit) in a meaningful way.
The se.contrasts() function looks quite appealing, though it appears to
require me to respecify the contrasts...in both a contrast.obj and a coef.
It is not at all clear from the instrutions what contrast.obj is, especially
given that I have already specified the contrasts and they are already
represented in coef(fit). I may be missing something here.
Could someone suggest a way to go from c...
2006 Jul 15
1
Some problems with latex(ftable)
...luding it in the next release (Frank, I hope that's a fair offer I
make for you to do).
This raises a question from me to the R developers. I would have
written write.ftable to return t(x), not ox. print is constrained to
return its argument. I thought write had more freedom. Then I would
respecify
print.ftable <- function (x, digits = getOption("digits"), ...) {
write.ftable(x, quote = FALSE, digits = digits)
invisible(x)
}
Had this been done then the current task would simplify to
latex(write(tmp))
Te question is: why was write.ftable designed to follow the
print....
2005 Feb 16
2
running out of memory
Hi
I am trying to do a large glm and running into this message.
Error: cannot allocate vector of size 3725426 Kb
In addition: Warning message:
Reached total allocation of 494Mb: see help(memory.size)
Am I simply out of memory (I only have .5 gig)?
Is there something I can do?
Stephen
[[alternative HTML version deleted]]
2008 Aug 29
1
R graphical question
I'm trying to create a graph using plot() with an axis that I
essentially want to plot the categories in the reverse alphanumeric
order - opposite of the typical R fashion. Is there a function to do
this?
In other words, I have categories "a", "c", "g", "z" which is the
order they'll be plotted, but I want to plot them as "z",
1998 Nov 29
0
NT4 and Samba (ref: newbie question)
...shares you will not be required to re-enter the userid/password
combination - NT4 will silently try to use the same userid/password
you specified for the first share.
If you are NOT using encrypted passwords and you establish
further shares, then for every additional share NT4 will ask the
user to respecify the userid/password.
So for reasonable NT4 client support, you will probably choose
to set Samba up for encrypted passwords and not put the
plaintext password option in the NT4 registry.
Samba V2, I understand, is going to allow NT Workstation
logins. But it is still in development/testing at...
2005 Jul 03
0
"bug" with ifconfig ... ?
...specified. This would be used if
you incorrectly specified an alias, or it was no longer needed.
If you have incorrectly set an NS address having the side
effect of specifying the host portion, removing all NS
addresses will allow you to respecify the host portion."
"Remove the network address specified.", to me, means that if one isn't
specified, nothing should/would happen :(
----
Marc G. Fournier Hub.Org Networking Services (http://www.hub.org)
Email: scrappy@hub.org Yahoo!: yscrappy...
2008 Feb 12
0
will_paginate with conditions
Hi, I''ve just switched to will_paginate, which is impressive and easy to
use!
I have a question regarding conditions:
I build a query using values from the params that were entered onto a
web form using something like
:conditions => [" foo like x and bar like y", params[:x]+"%",
params[:y]+"%"]
It would appear that the conditions need to be respecified
2007 Jun 06
2
name of the variable that will contain the result of a function
Hi everyone,
say I have a function called 'foo', which takes the argument arg1.
Is there any mechanism that I can use to "learn" about the variable
where foo(arg1) is going to be stored?
For example:
x <- foo(arg1)
so, inside foo() I'd like to be able to get the string "x".
if,
foo(arg1)
was used insted, I'd like to get NA.
thank you very much,
b
2003 May 07
1
[R ] Query : problems with the arithmetic operator "^" with function "lme" and "lmList"
Dear all,
I've got a problem in including square variables in lme and lmlist
functions. I've tried to work on Oxboys data of Pinheiro and
Bates'book, which consist of the heights of 26 boys, each mesured on
nine different occasions :
> Oxboys
Grouped Data: height ~ age | Subject
Subject age height Occasion
1 1 -1.0000 140.50 1
2 1 -0.7479 143.40
2007 Jan 09
2
posthoc tests with ANCOVA
dear all,
I want to perform a posthoc test for my ANCOVA:
a1<-aov(seeds~treatment*length)
With
summary(glht(a1, linfct = mcp(treatment = "Tukey")))
R tells me: "covariate interactions found -- please choose appropriate
contrast"
How do I build these contrasts?
Ideally, I would like to have the posthoc test for the ANCOVA including
a block-effect
2002 Aug 29
2
Factor Analysis in MASS4
Hi,
I had a look at the MASS4 scripts in the MASS package, in Ch 11.3 Factor
Analysis, there is a section of codes like:
data(ability.cov)
ability.FA <- factanal(covmat = ability.cov, factors = 1)
ability.FA
(ability.FA <- update(ability.FA, factors = 2))
#summary(ability.FA)
round(loadings(ability.FA) %*% t(loadings(ability.FA)) +
diag(ability.FA$uniq), 3)
2011 May 19
3
How to stop mail_executable from cwd to ~home
...he process shows cwd of /home/<user> and the automounted home.
It does this even though home is properly overridden within.
I suspect this is part of changing to invoke as the user
as the *-login process are ok but then they are still running as dovecot.
Various recent attempts to explicitly respecify HOME for mail_executable
via a wrapper script or using env have been to no avail
(as seen below).
How can I resolve?
And no I don't just want to override /home at the system level.
Thanks
-- Gary
# 1.0.9: /etc/dovecot.conf
base_dir: /var/run/dovecot/
syslog_facility: local1
protocols: imap i...
2009 Aug 07
0
Wine release 1.1.27
...: Use the context's current render target the get the swapchain drawable size.
wined3d: Don't use the GL texture flags to determine if a format is a depth stencil in CheckDepthStencilCapability().
wined3d: Rename WineD3DContext to struct wined3d_context.
wined3d: Don't respecify compressed textures in surface_upload_data().
user32: Send 0 as LPARAM for SIZE_MINIMIZED WM_SIZE messages.
wined3d: Properly calculate GL_TEXTURE_MAX_ANISOTROPY_EXT.
wined3d: Set the initial value of WINED3DTEXSTA_MAXANISOTROPY to 1.
wined3d: Update the WINED3DSAMP_MAGFILTE...
2011 Jun 02
48
[PATCH 0/9] libxl: disk configuration handling
This is v3 of my disk series. What were previously patches 01-06 have
been applied. These are the tested and updated remainder, addressing
the previous comments.
1 Preparatory work.
2-4 The new parser and its documentation.
5-6 Replace old parsers with calls to the new one.
7-8 Two features, one of them essential.
9 Basic test suite for disk string parsing, as adhoc script.