search for: coden

Displaying 8 results from an estimated 8 matches for "coden".

Did you mean: code
2012 Jun 27
1
Error: figure margins too large
...sters. 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" variable myvars <- names(mydataS2) %in% c("coden") mydataSNc <- mydataS2[!myvars] #Determine number of clusters wss <- (nrow(mydataSNc)-1)*sum(apply(mydataSNc,2,var)) for (i in 2:15) wss[i] <- sum(kmeans(mydataSNc, centers=i)$withinss) plot(1:15, wss, type=&q...
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. - What I need: a contingency table in the form: Groupcode code1 code2 .. coden P C B S U X with each cell in t...
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' ?
...quot;The Iterative Convex Minorant Algorithm for Nonparametric Estimation", journal = j-J-COMPUT-GRAPH-STAT, volume = "7", number = "3", pages = "310--321", month = sep, year = "1998", CODEN = "????", ISSN = "1061-8600", MRclass = "62G05", MRnumber = "1 646 718", bibdate = "Sat Jan 2 17:33:21 MST 1999", URL = "http://www.amstat.org/publications/jcgs/abstracts98/jongbloed.html",...
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