search for: gtg757i

Displaying 7 results from an estimated 7 matches for "gtg757i".

2008 Jun 17
6
Insert raster image into an R graphic
...names of the competitors with their brand logos. My searches so far led to inconclusive results and, therefore, any suggestions are welcome. Thank you so much. Tudor -- Tudor Dan Bodea Georgia Institute of Technology School of Civil and Environmental Engineering Web: http://www.prism.gatech.edu/~gtg757i
2007 Oct 30
1
Place a string into the header/footer of a pdf file generated during a plot session
...what R script generated a certain chart, I would like to add the path to the working directory into the header/footer of the corresponding pdf file. Thank you. Tudor -- Tudor Dan Bodea Georgia Institute of Technology School of Civil and Environmental Engineering Web: http://www.prism.gatech.edu/~gtg757i
2008 Jul 06
1
Exception Handling
...topic. I run various versions of R on Windows and multiple UNIX platforms. The list of items is read from a .csv file and stored in a dataframe. Thank you. Tudor -- Tudor Dan Bodea Georgia Institute of Technology School of Civil and Environmental Engineering Web: http://www.prism.gatech.edu/~gtg757i
2007 Nov 13
1
R: Query an Access database based on a date attribute
...inale----- Da: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org]Per conto di Mark Wardle Inviato: marted? 13 novembre 2007 11.59 A: Tudor Bodea Cc: r-help at stat.math.ethz.ch Oggetto: Re: [R] Query an Access database based on a date attribute On 12/11/2007, Tudor Bodea <gtg757i at mail.gatech.edu> wrote: > Dear useRs, > > I would like to query an Access database through R based on a date attribute > but, unfortunately, I fail to do so. For example, the table test_table of the > test.mdb looks like: > > ID cd market competitor dd...
2007 Nov 12
2
Query an Access database based on a date attribute
...hat the last expression in the select statement is not executed/interpreted correctly and, as a consequence, the query leads to the above empty set. Thank you. Tudor -- Tudor Dan Bodea Georgia Institute of Technology School of Civil and Environmental Engineering Web: http://www.prism.gatech.edu/~gtg757i
2008 Jul 17
3
Hiding information about functions in newly developed packages
...l suggestions, I would really appreciate your taking the time to share them with me. For this project, I am using R2.7.1 on a Windows XP machine. Thank you. Tudor -- Tudor Dan Bodea Georgia Institute of Technology School of Civil and Environmental Engineering Web: http://www.prism.gatech.edu/~gtg757i
2008 Sep 27
1
Append selectively to components of a list
Dear R users: Is there a way to append selectively to components of a list (if possible, loops are to be avoided)? To illustrate the point, in the example below, I would like to append 99 to vector b of the list l. > l <- list(a=c(1), b=c(2,3), c=c(4,5,6)) > l $a [1] 1 $b [1] 2 3 $c [1] 4 5 6 As you may expect, the result should look like: > l $a [1] 1 $b [1] 2 3 99 $c [1] 4 5