Displaying 20 results from an estimated 7000 matches similar to: "Installing and compiling C code for R-windows"
2012 Nov 08
1
Package "glmulti": Include a variable in ALL models
Dear all,
I have a question about the glmulti package. I want to include some variables in all models. To that end I applied the wrapper function as shown in the examples (http://www.inside-r.org/packages/cran/glmulti/docs/glmulti).
To include the variable "Geslacht" in all models:
> glm.redefined = function(formula, data, always="", ...)
2008 Aug 21
0
kickstart error on 5.2 exception
Hi,
I am trying to get my kickstart file that worked under 5.1 to work under 5.2 centos x86_64.
This is the error that I get.
On the screen it says Exception occured and gives me the option to save it. This is that file.
I dont see any odd that would cause it to crash.
Can anyone help. My kickstart file is in the mix below.
Seems to be related to network, my line seems fine (I think) for
2007 Jan 01
0
autofill for a tkentry field
Hello all,
I'm experimenting with tlk/tk and I find it very useful. I would like to
have the text of a tkentry be automatically filled when the user starts
typing, according to a predetermined list. I've found a solution on the
tcl wiki pages, but I don't quite know how to translate it in R... Here is
the tcl code: http://wiki.tcl.tk/13267
And here is my code that does not work.
2008 Sep 10
1
Two way clustering
Hi R users,
I am trying to do two-way clustering (using information of both observation and variables). Is there any package available in R.
Another querry, if somebody can provide related information (website) regarding this statistics, it will be great.
Thanks in advance.
Regards,
Ram Kumar Basnet,
Wageningen University.
[[alternative HTML version deleted]]
2012 Aug 10
0
error applying user-defined link function to lmer
Dear R users,
I'm struggling with applying a user-defined link function in lmer. For analyzing data of a 2AFC psychophysical experiment, I would like to model my binary data with a logistic function with a lower limit at 0.5 instead of 0. In a previous question this has been described as a halflogit function. To do so I wrote my own link function and would like to submit it to lmer, however
2014 May 20
1
abrt dump qt selinux
Hi all,
Note: selinux was in permissive prior to error
Got this with a yum update:
abrt_version: 2.0.8
cgroup:
cmdline: semodule -n -r oracle-port -b base.pp.bz2 -i
accountsd.pp.bz2 ada.pp.bz2 cachefilesd.pp.bz2 cpufreqselector.pp.bz2
chrome.pp.bz2 awstats.pp.bz2 abrt.pp.bz2 aiccu.pp.bz2 amanda.pp.bz2
afs.pp.bz2 apache.pp.bz2 arpwatch.pp.bz2 audioentropy.pp.bz2
asterisk.pp.bz2
2009 Jan 28
3
for/if loop
Hi, it's my first time to write a loop with R for my homework. This loop is
part of the function. I wanna assign values for hll according to panel
[ii,1]=pp. I didn't get any error message in this part. but then when I
further calculate another stuff with hll, the function can't return. I think
it must be some problem in my loop. Probably something stupid or easy. But I
tried to look
2011 Jan 27
1
Errors in Integrate
Hello,
I have written the function I would like to integrate in two ways:
denfxn <- function(yy,vv,a2,b2,mu2) {
pp <- 1-pnorm(yy/sqrt(vv))
part1 <- pp^(a2-1)
part2 <- (1-pp)^(b2-1)
part3 <- dnorm(yy,mu2,sqrt(vv))
return(part1*part2*part3) }
denfxnorg <- function(yy,vv,a2,b2,mu2) {
pp <- 1-pnorm(yy/sqrt(vv))
pp <- if (pp < .001) .001
else
2011 Dec 06
1
module can't find other modules
I have these three modules with the following structure:
|-- modules
| |-- create_resources
| | |-- LICENSE
| | |-- Modulefile
| | |-- README
| | |-- lib
| | | `-- puppet
| | | `-- parser
| | | `-- functions
| | | `-- create_resources.rb
| | |-- spec
| | | |-- spec.opts
| | | |-- spec_helper.rb
| | | `-- unit
2007 Mar 11
5
Modules Search and Puppet
Hi,
I''m not using puppet in a standard way (ie. in a server/client
configuration), just the standalone ''puppet --use-nodes'' command.
I''m having problems with the directory structure of modules and using the
import feature.
My directory infrastructure looks like this:
/srv/puppet/facter/...
/srv/puppet/manifests/site.pp
/srv/puppet/manifests/libs/file.pp
2008 Jan 20
4
read.table: wrong error message? (PR#10592)
--Apple-Mail-44--797532055
Content-Type: text/plain;
charset=US-ASCII;
format=flowed;
delsp=yes
Content-Transfer-Encoding: 7bit
I believe read.table may report misleading errors. In this example,
where a header line in a file has an incorrect number of row names (28
instead of 29), I get the error message "duplicate row.names are not
allowed".
However, I cannot not find any
2012 Apr 05
1
using for loops with ggplot
Hi all, I have been using ggplot for a few months and ran into this
porblem, I am trying to use ggplot in a for loop and it is not working. if
I do the following:
data=as.data.frame(cbind(rnorm(10),rnorm(10),rnorm(10)))
############
pp=ggplot(data, aes(x=(1:10), y=data[,1]))
pp=pp+geom_line(aes(x=(1:10),y = data[,1]),lty=2)
pp=pp+geom_line(aes(x=(1:10),y = data[,2]),lty=2)
2012 Jan 11
1
R CMD check pkg and 32/64 bit.
R gurus:
I'm trying to get another round of rconifers out and I need some advice/help crushing differences in the examples test.
I'm trying to make sure the max sdi values are being respected.
I've added a tests/rconifers-Ex.Rout.save (from windows i386-pc-mingw32) and when I ran R CMD check (both R-2.13.0), I got the following results:
* using log directory
2008 Jun 04
1
I am doing something wrong....
OK... I have relaid out my puppet dir as recommended in best
practices:
[jleggett@binford puppet]$ find . -print | grep -v .svn
.
./plugins
./plugins/lines.pp
./files
./files/module
./files/module/SSH
./files/module/SSH/ssh_config
./files/module/SSH/sshd_config
./files/module/INFO
./files/module/INFO/motd
./files/module/INFO/issue
./files/module/NIS
./files/module/NIS/nsswitch.conf
2007 Sep 11
5
Node behavior
Hello,
I am rather new to Puppet and am starting to test it out for use on a
client''s servers. I am running into difficulty with node behavior. I
want to specify a different firewall for every server. The default
"basenode" works (applies the various files/functions/etc to all the
servers just fine). However, when I specify the following (see
nodes.pp, specifically),
2006 Dec 04
6
puppet definition
Hello,
still upgrading to .20.1 and i have another issue that puppet does
not regonize anymore my definitions, i use some ensure lines definition
in a function.pp file and since then i am unable to make it work.
puppetmasterd tells me this:
Unknown function sudoensure_line in file
/etc/puppet/manifests/./classes/backup.pp
the import of the function is my 2 line of the site.pp and i
2010 Jun 17
5
Could not find class, code-blind
I''m troubled with a node-definition not able to resolve a class:
Could not find class rhnsd::common at /etc/puppet/manifests/nodes.pp:
8 on node X
Content of manifest/site.pp:
import "nodes.pp"
[...]
The layout of modules/rhnsd/ is:
|-- files
| `-- up2date-rhn
|-- manifests
| |-- client.pp
| |-- common.pp
| |-- init.pp
| `-- rhn.pp
A `cat'' from each
2011 Mar 23
1
way of importing .pp file or some string that contain class definition in ruby dsl
I''m finding the way to import a file or a class stored in string in
ruby manifest.
I have tried following code to parse the class having packages and
services.
pp = Puppet::Parser::Parser.new("development")
pp.string = "class webhttpd{package { ''httpd'': ensure => installed, }
service { ''httpd'': ensure => running, enable =>
2012 Apr 25
2
Unable to import a manifest file from a different directory to the one where site.pp is located using environments
Hi List,
Puppet Version: v2.7.13
Question - If I correctly setup multiple manifestdir''s in the puppet.conf
file how can I import a node pp file located in a different directory tree
to site.pp?
My configuration information is below.
In my puppet.conf file I have setup an environment called "stable", within
this environment I have setup the manifestdir, modulepath and
2012 Sep 28
2
nested modules and autoloading
All-
I''m using puppet 2.7.14. I''ve reviewed
http://docs.puppetlabs.com/puppet/2.7/reference/modules_fundamentals.html
but it doesn''t seem to cover what I''m attempting.
Consider a module layout like this:
$ tree mymodule
mymodule
|-- Modulefile
|-- README
|-- manifests
| |-- init.pp
| |-- special_type
| | `-- prereqs.pp
| `-- special_type.pp