similar to: Help

Displaying 20 results from an estimated 700 matches similar to: "Help"

2013 Nov 17
1
melt dataframe
Hi, Try: dat1 <- read.csv("precipitationRglimclim.csv",header=TRUE,stringsAsFactors=FALSE,sep="\t") library(reshape2) dat2M <- melt(dat1,id.var=c("year","month","day")) dat2M1 <- dat2M[with(dat2M,order(year,month,day,variable)),] ?dim(dat2M1) #[1] 1972320?????? 5 ?row.names(dat2M1) <- 1:nrow(dat2M1) ?colnames(dat2M1)[4:5] <-
2013 Jun 11
1
Help needed in feature extraction from two input files
Hi, Try this: lines1<- readLines(textConnection("gene1 or1|1234 or3|56 or4|793 gene4 or2|347 gene5 or3|23 or7|123456789")) lines2<-readLines(textConnection(">or1|1234 ATCGGATTCAGG >or2|347 GAACCTATCGGGGGGGGAATTTATATATTTTA >or3|56 ATCGGAGATATAACCAATC >or3|23 AAAATTAACAAGAGAATAGACAAAAAAA >or4|793 ATCTCTCTCCTCTCTCTCTAAAAA >or7|123456789
2006 Apr 20
2
R-Help
Dear r-users, Suppose I have three datasets: Dataset-1: Date x y Jan-1,2005 120 230 Jan-2,2005 123 -125 Jan-3,2005 -110 300 Jan-4,2005 114 -21 Jan-7,2005 11 299 Mar-5,2005 200 311 Dataset-2: Date x y Jan-2,2005 123 -125 Jan-3,2005 -110 300 Jan-4,2005 114 -21
2008 Dec 29
2
[LLVMdev] Enhancing the Trident compiler
Hi, Would anyone happen to know if there are any efforts underway at enhancing the Trident compiler? Some of the things that I would like to add to the Trident compiler are : a. Support for compiling multiple C functions in an input file b. Support for parameter passing c. Support for functions returning results d. Support for a C++ front end, and C++ objects e. Updating the trident
2009 Feb 02
3
Question about key file formats used by OpenSSH
Hello OpenSSH developers, first post. I'm implementing SSH agent functionality in a program of mine, with the ability to add/remove keys files as saved by OpenSSH. So I'm trying to figure out which formats OpenSSH uses natively for the different types of keys. The only specification related to SSH key file formats I've found is RFC4716 (SSH Public Key File Format). Analysis of
2008 Dec 29
3
[LLVMdev] Error when attempting to build llvm-gcc-1.5 on Mac OS X 10.5.6
Hi Anton, Where can I get gccas ? I am running Mac OS X 10.5.6 and I get the following error: xgcc: installation problem, cannot exec `gccas': No such file or directory make[2]: *** [libgcc/./_muldi3.o] Error 1 make[2]: *** Waiting for unfinished jobs.... xgcc: installation problem, cannot exec `gccas': No such file or directory make[2]: *** [libgcc/./_negdi2.o] Error 1 make[1]:
2010 Jan 06
3
February 2010***New R Courses*** by XLSolutions Corp at 9 USA Cities: San Francisco, New York, Washington DC, Houston, Boston, Las Vegas, Seattle, etc
Happy New Year ! XLSolutions February 2010 R courses schedule is now available online at 9 USA cities for with 13 new courses: *** Suggest a future course date/city (1) R-PLUS: A Point-and-Click Approach to R (2) S-PLUS / R : Programming Essentials. (3) R/S+ Fundamentals and Programming Techniques (4) R/S-PLUS Functions by Example. (5) S/R-PLUS Programming 3: Advanced Techniques and
2007 Oct 07
7
Ruby on Rails on WAMP
I am using WAMP(windows, Apache, mySQL and PHP) for my web development. So I have already MySQL and Apache working. Could any one tell me how to install Ruby on Rails on this environment? Can I just put ror in the root directory, www? A newbie needs your help. :-) -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because
2008 Dec 29
0
[LLVMdev] Enhancing the Trident compiler
Hi, I'm not sure, but I think you should do point 'e' first - unless you want to implement 'a' to 'd' first for 1.5 and then again for 2.4. Best regards, Nico On Dec 29, 2008, at 1:44 PM, Elvis Dowson wrote: > Hi, > Would anyone happen to know if there are any efforts underway > at enhancing the Trident compiler? > > Some of the things that I
2008 Dec 28
3
[LLVMdev] Error when attempting to build llvm-gcc-4.2-2.4.source on Mac OS X 10.5.6
Hi, I'm new to LLVM and I want to setup the Trident Compiler system on Mac OS X. I downloaded the llvm-gcc-4.2-2.4.source.tar.gz package, created a build directory and ran the following command to configure $ ../src/configure --program-prefix=llvm- --disable-bootstrap --enable- checking --enable-languages=c,c++ $ make -j 2 Configure works fine, but I get the following error
2008 Dec 28
0
[LLVMdev] Error when attempting to build llvm-gcc-4.2-2.4.source on Mac OS X 10.5.6
Hello, Elvis > $ ../src/configure --program-prefix=llvm- --disable-bootstrap > --enable-checking --enable-languages=c,c++ You haven't configured llvm-gcc properly. Please do read readme.llvm file. However, afair, Trident was LLVM 1.5-based, and it will require massive rewrite to use LLVM 2.x (bytecode format was also changed) -- With best regards, Anton Korobeynikov Faculty of
2008 Apr 09
2
apache log directives
Does anyone know of a way to specify a CustomLog file name in apache based on the vhost? for example, I have 10 vhosts and instead of giving each one a CustomLog directive and specifying a different log file I'd like to do something in global that does the same thing, ala vhost elvis customlog elvis.log vhost king customlog king.log becomes customlog $VHOST.log I know that this is a bad
2008 Dec 29
1
[LLVMdev] Enhancing the Trident compiler
Hi Nico, Yes, that's true! :-) I just listed it in order of short-comings of the existing compiler. I've been reading up on existing tools, and it would appear that a couple of commercial tools exist, most notably Xilinx AutoESL, which supports C, C++, SystemC and M-code. Others support better C functionality, e.g. c-to-verilog, which does not have the current
2008 Dec 28
2
[LLVMdev] Error when attempting to build llvm-gcc-4.2-2.4.source on Mac OS X 10.5.6
Thanks Anton, Yes, I just realized this. I am going through the steps now. So, you're saying that Trident will not work with llvm-2.4? If I have to use llvm-1.5, which is the corresponding C front end? I couldn't locate the C front end package on the Trident Compiler website. Best regards, Elvis Dowson On Dec 29, 2008, at 2:43 AM, Anton
2006 Jun 13
1
2 Courses Near You - (1) Introduction to R/S+ programming: Microarrays Analysis and Bioconductor, (2) R/Splus Fundamentals and Programming Techniques
XLSolutions Corporation (www.xlsolutions-corp.com) is proud to announce: (1) Introduction to R/S+ programming: Microarrays Analysis and Bioconductor *** San Francisco / July 17-18, 2006 *** *** Chicago / July 24-25, 2006 *** *** Baltimore / July 27-28, 2006 *** *** Raleigh / July 17-18, 2006 *** ***
2003 Nov 10
1
Problem in MySql-3.23.49
Hi I am a user of Asterisk-0.5.0. I am a final year student of MCA in IGNOU.All the system are running in Red Hat-7.3 OS. I am able to transfered call in the following procedures: PSTN(INDIA)>>Mediatrix 1204>>Asterisk server>> VOCAL server>>Mediatrix 1204>>PSTN(USA) Now I want to save the cdr data in my Asterisk box.I am using RedHat-7.3 OS. I am using the
2006 Sep 26
1
Domain problem...
Hello all, This is the first time I write to the list. Sorry about my english... My Debian Sarge server was working perfectly with samba and winbind as a normal client in a Domain enviroment. I was able to share folders on my linux machine giving rights to the domain users. Everything was working until one day in that it crashed for some reason I don't know. I didn't touch anything of my
2008 Feb 25
1
NoMethodError: undefined method `<=>' for :zip:Symbol
Long time programmer, but I just started learning RoR last week. I am going through some examples in the book "Ruby on Rails: Up and Running". The example I am on had me add a table to the database that looks like so: CREATE TABLE people ( `id` int(11) NOT NULL auto_increment, `type` varchar(20) default NULL, `name` varchar(20) default NULL, `email` varchar(30) default NULL,
2009 Apr 02
1
Looking for an R advanced programming course in USA
Hi List, I am looking for an R advanced programming course in USA for April. Need to attend the course before April 31st. Regards - Steve [[alternative HTML version deleted]]
2004 Apr 20
1
Re: Course***May-June 2004***R/Splus Programming Techniques, @ 5 USA locations near you!]
[This email is either empty or too large to be displayed at this time]