similar to: Complitation Error

Displaying 20 results from an estimated 10000 matches similar to: "Complitation Error"

2002 Jun 12
4
Opening all files in a directory
Is there any way that R can be programmed so that it will cycle through all files in a directory without having to define file names? The reason I ask is because I will have about 50-100 files in a directory which will be randomly named. ie: MIDEX, OACES-CO2, ODEN91, etc... If not...are there any languages out there that will do this sort of things? Or is there another method you could
2002 May 21
2
Unwanted Levels in R
I searched the mailing list archives and found one post relevant to my problem, but it was not specific enough to solve my problem. I am reading in a large file of data (I believe it is in ASCII format). I have tried reading the file in as a data frame and as a list, and both methods result in unwanted levels being created which leads to problems when I try to copy or reference certain cells.
2011 Jan 21
1
ggplot boxplot
Hello, I am trying to generate a set of boxplots using ggplot with the following data with 4 columns (Day, Site, VO2, Cruise) AllCorbulaMR Day Site VO2 Cruise 1 1 1 148.43632670 1 2 1 1 61.73864969 1 3 1 1 92.64536096 1 4 1 1 73.35434957 1 5 1 1 69.85568810 1 6 1 1 98.71116866 1 7 1 1 67.57880107
2008 May 13
0
Problem geting web interface to work
Hi, i have installed CruiseControlRB 1.3.0. With no project added the web interface at localhost:3333 looks find. I have successfully added one of my projects (batch file which builds some c++ code) which is also building fine. But the web interface is no more working - i get the following message "Errno::EINVAL in Projects#index". I have attached a log (run with --trace) which
2008 Jan 17
3
CruiseControl problem. Broken Pipe?
Hi Friends, Just happened to catch this err in the CC log: Build loop failed BuilderError: Write failed: Broken pipe ./script/../config/../app/models/subversion.rb:98:in `execute_in_local_copy'' ./script/../config/../lib/command_line.rb:86:in `call'' ./script/../config/../lib/command_line.rb:86:in `e'' ./script/../config/../lib/command_line.rb:84:in `popen''
2005 May 13
0
randomForest partialPlot x.var through function
All, I'm trying to set up a function which calls the partialPlot function but am getting an error that I can't seem to solve. Here's a simplified version of the function and error... > pplot <- function(rf,pred.var){partialPlot(x=rf,pred.data=acoust,x.var=pred.var)} > > attach(acoust) > acoust.rf <-
2008 May 02
3
CruiseControlRb behind apache
I managed to find this in the archives, so far: http://www.nabble.com/Setting-up-CCRB-behind-apache-proxy-tt14016053.html#a14099749 Found a better alternative to doing this in my .htaccess instead of messing with the httpd.conf, in case someone is interested: --- snip --- RewriteEngine On ### for cruisecontrol RewriteBase / RewriteRule ^(.*)$ http://localhost:3333/$1 [P] AuthType Basic
2002 Jun 13
1
problem with read.fwf
Here is an example of the data I'm reading in using read.fwf: 5342.0 5450.4 0.9200 0.4506 34.7030 27.8411 37.1306 46.0034 0.0000 5438.0 5549.6 0.9300 0.4477-34.7280 27.8616 37.1506 46.0234 0.0000 And the commands I'm using to read it in: widths <- c(7,7,8,8,8,8,8,8,8) filedata <- read.fwf(fileopen, widths,sep="",dec=".") The problem is with
2008 Mar 31
0
[CruiseControl] mongrel-trunk-mingw32 build 997.1 failed
The build failed. Note: if you set Configuration.dashboard_url in config/site_config.rb, you''d see a link to the build page here. CHANGES ------- Build was manually requested BUILD LOG --------- D:/Users/Luis/.cruise/projects/mongrel-trunk-mingw32/work Luis$ ruby -e "require ''rubygems'' rescue nil; require ''rake''; load
2002 Jun 06
1
Dealing with data of varying format
I'm trying read some data files into data frames, but the formatting of their headers is creating problems when I try to reference certain columns. For instance...below I've pasted four of the headers to give an idea how they vary slightly. A 90404001 POLARSTERN GERMANY MIZEX A 819300 HUDSON CANADA
2008 Dec 07
2
subsetting large data frames.
Hi all, I have a question regarding subsetting of large data frames. I have two data frames ?catches? and ?tows? and they both have the same 30 variables (columns). I would like to select rows in the data frame ?tows? where all 5 specific variables are NOT matched in ?catches. That is to say, the combination of these 5 variables is unique. One or more of the variables could be the same but the
2010 Mar 18
2
CCrb configuration for many projects
Hi! I have about 10 projects in my Cruise. I want to use metric_fu (roodi, rcov, flay) metrics. Right now I have defined :cruise task in Rakefile in each project. Is there any convention to manage cruise configuration from one place? Gem? Plugin for Rails projects? Some good habit also for custom artifacts? -- Pozdrawiam, Sebastian Nowak http://blog.sebastiannowak.net XMPP: seban at chrome.pl
1999 Jul 02
0
Win cash & a cruise!
Raquel's Casino, Inc. is awarding a cruise + $300 to a lucky member. No purchase necessary to play! Join before month end to participate. (You will automatically be entered into the next drawing.)You can join at http://www.raquelscasino.com (casino) http://www.tobet.com (sportsbook) Raquel's online casino provides guests with a state-of-the-art gaming experience: - A chance
2005 Oct 19
2
Automatic rounding of values after factors , converted to numeric, are multipled by a real number
I am wondering if someone would have any suggestion about my issue? I have the following code: wgts<-aggregate(subset(lendata,select=c(Length)),list(lendata$Cruise,len data$Station,lendata$Region,lendata$Total),mean) wgts<-wgts[order(wgts$Group.3,wgts$Group.1,wgts$Group.1),] names(wgts)<-c("Cruise","Station","Region","Total","MLen")
2010 Mar 11
0
alternative tmp directory?
I''m trying to determine how I can set an alternative tmp directory for cruise session files. My /tmp has filled up a few times now with ruby_sess.ff20ec1c310b4a78 (and similar) files. I cleaned them all out yesterday, and have another 532 of them today. I''ve tried a few things so far. I have a tmp/sessions directory within cruise itself, but that is not being used. In
2007 Dec 21
0
db:migrate problem
I''m having a bit of trouble getting a rails project to build properly within cruisecontrolrb. My cruise task is in lib/tasks/my_project.rake, and looks like this: task :cruise => [''db:test:purge'', ''db:migrate'', ''db:test:prepare'', ''test:coverage:clean'', ''test:coverage:prepare'',
2008 Aug 12
1
The CruiseControl server does not provide web URLs for projects
Hi folks, We successfully set up our ccrb app, running on a server in-house. As a first pass, I was originally running it through a terminal connected to the server via ssh, where I''d just navigated to the app''s folder then run ''cruise start''. At that time, I could connect fine to the CCTray service. We''ve subsequently
2009 Sep 05
3
Selecting biological data
Hello all, I am new to R but have some experience with MATLAB and am trying to make the switch. I generally find the two languages easy to adapt but there are a few routine tasks which I would like to run smoother in R and I am having trouble finding a help resource. Could someone suggest a guide to filtering, selecting, sorting, and processing biological matrix data? Here is a rudimentary
2014 Dec 01
0
Nvidia, vncserver, >> xfce = Resolved Issue
The suggestion from Marco to try a non-3D DE worked. I tried two methods: 1. minimal Centos 7 install and xfce install via CLI. Worked fine. 2. Gnome Centos 7 install and then xfce install via yum groupinstall. Worked fine. One tip for anyone doing this: After starting vncserver the first time, it creates a ~/.vnc/xstartup file. This will be the same type of session if you logged in locally.
2014 Nov 04
1
What List to Use for Patch Requests (Johnny Hughes) - CentOS Digest, Vol 118, Issue 4
On 11/04/2014 05:00 AM, centos-request at centos.org wrote: Today's Topics: 34. Re: What List to Use for Patch Requests (Johnny Hughes) ------------------------------ Message: 34 Date: Tue, 04 Nov 2014 05:58:07 -0600 From: Johnny Hughes <johnny at centos.org> To: centos at centos.org Subject: Re: [CentOS] What List to Use for Patch Requests Message-ID: <5458BF4F.6020300