Displaying 20 results from an estimated 3000 matches similar to: "source a script file straight from a subversion repository"
2011 Sep 28
1
Password protected R Repository
Hi,
I've set up a very simple R repository. Just a single source
library. Everything works fine. I can install the package on my client
using:
install.packages(repos='http://www.myServer.se/myRepo/',
pkgs='myLib', dep=TRUE)
However, I want to protect the repo, so I use a
.htaccess, placed directly under 'myRepo' on the server. I use
'Authentication Basic' and
2011 Aug 03
1
Extract rows from a matrix according to value in column
Dear helpers,
I'm trying to extract certain rows from a matrix according to the
values the rows have in a certain column. I've been googling for a
while without result.
Here's a reproducible example of a matrix (and the one I was playing
with initially):
> myrepo<-getOption("repos")
>
2010 Sep 07
2
Wrapper package / yum repository
Hi,
I am setting up a yum repository for our applications and I am having a
bit of trouble. I copy the files to a webserver, run createrepo and
then configure the servers to use it.
One of the RPMs is a "release" package that includes exact versions of
all the binary and configuration files as dependencies so we can do
"packaged releases" and, if we want to revert to a
2007 Nov 09
6
backups and md5 all in one while splitting
I'm trying to back up our svn repositories, and I found a nice little
backup command line bzip's the backup and creates the md5 hash all in one:
svnadmin dump --deltas /repo |bzip2 |tee dump.bz2 | md5sum >dump.md5
The problem is I need to split the backups, so this doesn't really
work. Is there perhaps another way of piping things to allow for
splitting of the backups?
2013 Mar 03
1
Deploy with Capistrano. Bundle install freezes indefinetly.
I am fighting with this for 5 days... i''m getting crazy!
Here is my deploy.rb:
require "bundler/capistrano"
require "rvm/capistrano" # Load RVM''s capistrano plugin.
set :rvm_ruby_string, :local # Or whatever env you want it to run
in. ''1.9.3''
set :domain, ''www.xxx.com''
set :application,
2006 Jan 30
5
Creating my own YUM repository
I have already 6 Centos machines here and it is getting strange
having to pull down updates to each system.
Seems like I should set up one system to pull updates and then all
other systems to point to it.
How?
Plus then I would want to add to this repository.
Say that a number of my systems use tomcat which is only available
via rpm. I would like to be able to add it to my repository, and
2018 Aug 06
2
Back to Xfce
On 08/06/2018 11:51 AM, Tony Schreiner wrote:
> On Mon, Aug 6, 2018 at 11:33 AM Robert Moskowitz <rgm at htt-consult.com>
> wrote:
>
>>
>> On 08/06/2018 11:11 AM, Tony Schreiner wrote:
>>> On Mon, Aug 6, 2018 at 10:55 AM Robert Moskowitz <rgm at htt-consult.com>
>>> wrote:
>>>
>>>> Nicolas,
>>>>
>>>>
2018 Aug 06
0
making my own group repo - Re: Back to Xfce
I tried making my own repo with just the groups in them and I got an
error....
I used:
#createrepo -g /root/mygroups.xml /root/myrepo
Saving Primary metadata
Saving file lists metadata
Saving other metadata
Generating sqlite DBs
Sqlite DBs complete
Where /root/mygroup.xml is attached below.
Then I made:
cat > /etc/yum.repos.d/myrepo.repo << EOF
[myrepo]
name=My repo for armhfp
2018 Jan 29
3
Mirroring centos.org
Hello,
I would like to mirror the centos.org repository for an offline network. I
don't need the ISO images, don't need any i386 stuff, and I think I
probably don't need any of the source code rpms either. Most of the clients
are CentOS 6.x, so I don't want to download the CentOS 7.x tree yet either
(that will come soon, but separately from this one).
I tried using this command,
2011 Mar 31
2
Linear Model with curve fitting parameter?
I have a model Q=K*A*(R^r)*(S^s)
A, R, and S are data I have and K is a curve fitting parameter. I
have linearized as
log(Q)=log(K)+log(A)+r*log(R)+s*log(S)
I have taken the log of the data that I have and this is the model
formula without the K part
lm(Q~offset(A)+R+S, data=x)
What is the formula that I should use?
Thanks for all of your help. I can provide a subset of data if necessary.
2009 Jul 23
2
mathematical notation in R
Does this approach what you're looking for?
See
?is.finite
for more info
> LBAuo<- -9999
> LBAuo
[1] -9999
> if (LBAuo <= -9999) LBAuo <- -Inf
> LBAuo
[1] -Inf
>
HTH
Steven McKinney
> -----Original Message-----
> From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-
> project.org] On Behalf Of Mary A. Marion
> Sent: Wednesday, July 22, 2009
2011 Mar 28
2
xlsx problem
Dear list,
I'm running windows xp with R 2.12.0. I'm trying to load a excel
spreadsheet into R using the xlsx package. I posted my code below with
the error I get.
> res <- read.xlsx("Copy of test_excel_input_data.xlsx", 6)
Error in .jcall("RJavaTools", "Ljava/lang/Object;", "invokeMethod", cl, :
java.lang.IllegalStateException: Cannot get
2006 Mar 09
3
OT: Subversion repository layout
Hi,
I''m trying to get a nice repository structure happening and was
wondering what other people like to use.
I''m about ready to publish a rails app. This app now lives in myapp/trunk
When this app goes live I will need to freeze it so I will copy
myapp/trunk to myapp/tags/release-1.0 (right?)
I also would like to get going on a new version which will break the
current
2009 Aug 05
2
Wishlist: Navigate to "Index" page of help when no topic (PR#13872)
On 04/08/2009 7:33 PM, Steven McKinney wrote:
>> -----Original Message-----
>> From: Duncan Murdoch [mailto:murdoch at stats.uwo.ca]
>> Sent: Tuesday, August 04, 2009 8:03 AM
>> To: Steven McKinney
>> Cc: r-devel at stat.math.ethz.ch; R-bugs at r-project.org
>> Subject: Re: [Rd] Wishlist: Navigate to "Index" page of help when no
>> topic
2011 Apr 08
4
Fast version of Fisher's Exact Test
Is anyone aware of a fast way of doing fisher's exact test for a series of 2
x 2 tables in R? The fisher.test is really slow if n1=1000 and n2 = 1000.
--
Thanks,
Jim.
[[alternative HTML version deleted]]
2009 Jul 23
2
Navigate to Index page of a package from R command prompt
Hi all,
Is there a way to navigate directly to the "Index" page of help
for a package?
Here's my connundrum:
I download and install package "foo".
I don't know what functions are in package "foo",
so I can't invoke the help for package "foo" via
> ?someFunction
help(package = "foo")
pops up some non-hyperlinked information page,
2013 Feb 06
1
Alioth Subversion repository freeze
Dear developers,
thanks to Charles (Lepple) and ESR hard work, we are now able to finalize
our migration from Subversion to Git, on Alioth.
As of now, our Subversion repository on
Alioth<https://alioth.debian.org/scm/?group_id=30602>is FROZEN!
Any new svn commit may simply be discarded, so beware!
Most active developers are currently using github, as a temporary mean.
But if you have any
2002 Feb 05
4
rsync dir in _both_ directions?
I felt certain there was an option to do this, but I cannot find it.
I want to rsync a directory on machine A over to machine B, and then rsync
the directory on machine B back to machine A.
The idea is this: I read my email using mutt, which is set to save my
email in ~/Mail in maildir format. This means that each message is in its
own file, instead of being appended to an existing file.
2018 Jan 29
0
Mirroring centos.org
In article <CANZsmmM6C_F+NuPdjd+mGDEXaJVcfc1bdhpWdESSbC2CR7Dz3g at mail.gmail.com>,
Felipe Westfields <felipe.westfields at gmail.com> wrote:
> Hello,
>
> I would like to mirror the centos.org repository for an offline network. I
> don't need the ISO images, don't need any i386 stuff, and I think I
> probably don't need any of the source code rpms either.
2018 Jan 29
1
Mirroring centos.org
Ok, that sounds a little more elegant.
Does that delete switch delete those files after download, or does it stop
it from downloading at all?
On Mon, Jan 29, 2018 at 10:48 AM, Tony Mountifield <tony at softins.co.uk>
wrote:
> In article <CANZsmmM6C_F+NuPdjd+mGDEXaJVcfc1bdhpWdESSbC2CR7Dz3
> g at mail.gmail.com>,
> Felipe Westfields <felipe.westfields at gmail.com>