Displaying 8 results from an estimated 8 matches for "codenation".
Did you mean:
catenation
2012 Jun 27
1
Error: figure margins too large
Hello,
I am running cluster analysis, and am attempting to create a graph of my clusters. I keep on getting an error that says that my figure margins are too large.
d <- file.choose()
d <- read.csv(d,header=TRUE)
mydataS <- scale(d, center = TRUE, scale=TRUE)
#Converts mydataS from a matrix to a data frame
mydataS2 <- as.data.frame(mydataS)
#removes "coden"
2001 Apr 02
0
Constructing a contingency table
Greetings. I'm having some trouble constructing a contingency table from
raw data (actually read in via RPgSQL). Here's the deal:
- What I've got: a data frame in the form:
Groupcode code1 code2 code3 code4 code5 .. coden
where groupcode is one of {P,C,B,S,U,X} and code{1..n} is TRUE or
FALSE. code{1..n} are NOT mutually exclusive, so between 0 and n of them
can be TRUE.
-
2010 Aug 13
7
Push changes to clients
I was wondering how to configure the puppet clients to only listen,
not to periodically pull configs down from the puppetmaster.
I''d rather push the configs out from the puppetmaster with
puppetrun...
At a guess I need to set runinterval to 0 in /etc/puppet/puppet.conf?
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post
2004 Jul 14
0
Convex smoothing via 'Iterative Convex Minorant' ?
I've been asked, and interested myself:
Has anybody implemented the above in R or another S language dialect?
We are talking about the algorithms / methodology
by Wellner, Groeneboom and Jongbloed, e.g., from the following article
@Article{Jongbloed:1998:ICM,
author = "Geurt Jongbloed",
title = "The Iterative Convex Minorant Algorithm for
2009 Mar 25
5
Subscribe to a recursive file...
Hi All....
I''ve got this configuration to manage bind, I want the exec to be run
whenever anything under /var/named or the file /etc/named.conf gets
updated....
file { "/etc/named.conf":
owner => root,
group => root,
mode => 0644,
require =>
2005 Nov 24
10
Any change of rsync using threads instead of fork?
On a typical embedded Linux device, with no MMU, there is no fork() or
it returns ENOSYS.
The nearest replacements are vfork() (which is only useful before
exec*()), or to create threads with pthread_create().
rsync would be a very useful program on such devices, and I was a bit
disappointed to build it, only to find the compile went fine but it
failed at runtime due to ENOSYS.
Is there any
2010 Aug 27
0
Sourcing reports from different locations.
It looks like puppet 2.6 loads reports from "puppet/reports" - is
there a way to specify another location for report files so you dont
have to manually copy the .rb file to
/usr/lib/ruby..../puppet/reports?
What I''d like to do is tell puppetmasterd to also look in
/usr/share/puppet-dashboard/ext/ for instance.
Is this doable? I''ve looked through the code and from what
2009 Mar 19
3
Module dependancies.
Hi all
Whats the best way of depending on a module - for example, I have an lvm
and a mysql module - on booting a clean machine it''s important that lvm
be set up before the mysql rpm installs as I want mysql on a volume. I
can''t see an easy (clean) way of making sure the mysql module installs
after the lvm module apart from depending on some resource that the lvm
module