similar to: Has anyone here considered using repo for the Git migration?

Displaying 20 results from an estimated 200 matches similar to: "Has anyone here considered using repo for the Git migration?"

2017 Feb 20
2
LLVM nightly installer for Windows is missing lldb's python35.dll
Hello! After having a large feud with gdb, I decided to switch over to lldb under Windows like I already had under Linux. However, when I installed it using the 64-bit LLVM nightly installer, it kept crashing upon startup. Popping it in WinDbg (oh the irony) showed that it was trying to load Python35.dll, but it was loading the 32-bit version I had installed separately. The fix was simple:
1999 Feb 06
2
Install R-0.63.1 on Solaris7
(Again: please send these things to R-devel or R-help !!) >>>>> "Yoko" == Yoko Wong <yoko@math.ubc.ca> writes: Yoko> Dear Martin, Yoko> I run into following errors when I try to compile R-0.63.1 on Yoko> Solaris7. >From all I see in the following, this looks like a Solaris 7 bug. I don't have access to this OS. Anyone else ?
2005 Apr 14
4
data manipulation
Hello, my question is about the data handling. I have a data set that is lined as: 4 1 17 1 1 -5.1536 -0.1668 -2.3412 -0.5062 0.9621 0.3640 0.3678 -0.5081 -0.2227 0.8142 -0.0389 -0.0445 -0.0578 -0.1175 -0.1232 0.8673 -0.1033 -0.0796 -0.0341 -0.1716 -0.1801 -0.7014 0.6578 0.5611 4 1 17 2 1 -5.1536 -0.1668 -2.3412 -0.5062 0.9621 0.3640 0.3678 -0.5081 -0.2227 0.8142 -0.0389 -0.0445
2005 Apr 20
1
window closed
Hello, The editor of R will close after I enter the following commands. I do not know the reason at all. When does this happen? I would very appreciate it if you could let me know. Sincerely. ===== gam <- matrix(scan("C:/Documents and Settings/Yoko N/Desktop/R/sas2.txt"), ncol = 29) Read 384132 items Warning message: Replacement length not a multiple of the elements to replace in
2008 Oct 04
2
index matter
Hi, I have a question about the following explanation; IndexFiles.txt ------------------------------------------------------ If index files are missing, Dovecot creates them automatically when the mailbox is opened. ------------------------------------------------------ Are they made based on which information? Thanks. Yoko -------------------------------------- Enjoy MLB with MAJOR.JP!
2005 Apr 18
1
a small problem with data
Hello, I have a strange problem. I may have specified and scanned the data set (I receive a message: Read 384134 items). I can check the dimension of the data set by dim(xyz). But when I try to load the data set or to list the data set by data(xyz), then I receive an error message saying that data set not found in: data(xyz). Is this possible, or is this because I deal with a large data set
2002 Nov 01
1
sticking a speex file inside a vorbis file
I forget the correct terminology, but anyway, sumthin struck me while getting help for sorting out my previous problem. Among other things (apart from doing the gigs with my computer) I use the G4s (and soon hopefully 1 of those nice dual G4s we just got) to record tracks of the different ppl & bands on our course (which is BTEC Popular music btw) using Pro Tools. Since Vorbis has the
1999 Aug 18
2
diag()
I would like to suggest a slight modification to diag(). In the case where x is a matrix with both row names and column names the same, it would be reasonable if the resulting vector also had those names. I often use diag() on variance matrices, where this modification is helpful. The modification requires replacing if (is.matrix(x) && nargs() == 1) return(c(x)[1 +
2007 Nov 01
9
Mongrel + apache 2.2 + proxy error
Hi, I have a setup with apache 2.2.6 proxying requests to a cluster of 5 mongrels. Occassionally, I receive the following error in the logs: [Tue Oct 30 12:00:28 2007] [error] (70007)The timeout specified has expired: proxy: pass request body failed to 127.0.0.1:8013 (127.0.0.1) from 213.205.247.171 () [Tue Oct 30 12:00:28 2007] [error] [client 213.205.247.171] Handler for proxy-server returned
1999 Nov 04
2
New codes() methods
Hi Everyone, Can I suggest a couple of new `codes' methods. I know codes is a bit dodgy (at least, according to the comments in codes.factor), but for what it's worth I like to extract codes from data frames of factors, for which the following two functions (which operate recursively) are helpful: "codes.default" <- function(x) { if (is.list(x)) lapply(x, codes)
2005 Nov 29
1
Compiling R in C / C++
I am interested in being able to use R in my own libraries, written in C++. I have seen that in the past several people have asked about this possibility. In the book Programming in S it is stated that it is possible to call R functions from a C++ called from R. Also, it seems it is possible to do something with the R D-COM port, but at least for somebody with my limited capabilities (and time)
1999 Mar 25
1
plot.formula and pch= (PR#149)
I'm not sure exactly where to point my finger with this one, but there is a nasty surprise to the unsuspecting user. There is no check on the length of the vector passed in the pch= argument to plot, it is just recycled as necessary: plot(1:10,1:10,pch=1:2) gives alternating circles and triangles. The nasty bits come up especially with plot.formula: x<-1:10;y<-1:10
1999 Nov 03
1
Dimnamenames (PR#257)
I've just started digging into Andreas's old report: > a <- array(0,c(2,2,2)); > dimnames(a)<-list(hansi=1:2, pepi=c("a","b"), karli=3:4) > dimnames(a[,,1]) # losing component names [[1]] [1] "1" "2" [[2]] [1] "a" "b" Now, this would be fairly easily fixed (I think) which would also make it compatible with S3.
1999 Mar 11
3
R and kron
I note that the CRAN at .at land still refers to 0.63.2. Is this just a typo? I don't want to download a whole lot only to find I still have it! Does 0.63.3 live elsewhere? And I note the new function kronecker - very useful but can it be applied to non-numerics as in factors, data frames etc preserving the class, levels and names? John
1999 Mar 11
3
R and kron
I note that the CRAN at .at land still refers to 0.63.2. Is this just a typo? I don't want to download a whole lot only to find I still have it! Does 0.63.3 live elsewhere? And I note the new function kronecker - very useful but can it be applied to non-numerics as in factors, data frames etc preserving the class, levels and names? John
1999 Dec 07
4
Finding indices with a certain property
I want the indices i for which x[i] < 0 (say): > x <- c(1, -1, 3, 3, -2) > where.negative(x) [1] 2 5 Surely where.negative is something simple, but how? G?ran -------------------------------------------------------------- G?ran Brostr?m Department of Statistics tel: +46 90 786-5223 Ume? University fax: +46 90 786-6614 S-90187 Ume?, Sweden
1999 Dec 07
2
Reply to list policy
I wonder if it isn't time to change the reply-to-list policy of R-help and adopt the alternative convention of replying to the author and asking him/her to summarize to the list. Recently R-help has been too busy for me to keep up with. There were quite a few identical responses in the "Finding indices with a certain property" thread, rather than an extended discussion. I think
1999 Mar 10
2
.Alias and memory
In an effort to encapsulate my dependence on class in order to deal with oldclass/class in Splus I defined the functions tfclass <- class "tfclass<-" <- function(x, value){ class(x) <- value ; x } and also the function classed <- function(x, cls) {class(x) <- cls; x} This last allows me to end a function definition with ... classed(somecalc,
1999 Dec 21
2
generating a sequence
Hi everyone I'm trying to generate a vector of the form a <- c(1,2,3,4,1,2,3,1,2,1) where n = 5 in a general way, where n can be any positive integer. I've run out of ideas. Does anyone have any suggestions? Thanks Karen Karen Kotschy Centre for Water in the Environment University of the Witwatersrand Johannesburg Tel: 011 716-2218
1999 Dec 21
2
generating a sequence
Hi everyone I'm trying to generate a vector of the form a <- c(1,2,3,4,1,2,3,1,2,1) where n = 5 in a general way, where n can be any positive integer. I've run out of ideas. Does anyone have any suggestions? Thanks Karen Karen Kotschy Centre for Water in the Environment University of the Witwatersrand Johannesburg Tel: 011 716-2218