search for: gfc

Displaying 10 results from an estimated 10 matches for "gfc".

Did you mean: gcc
2010 Nov 29
4
subset
?Hi: I always use subset the same way but now is returning 0 rows. What's wrong with the way I am subsetting? library(ggplot2) structure(list(first = c(38.2086, 43.1768, 43.146, 41.8044, 42.4232, 46.3646, 38.0813, 40.0745, 40.4889, 38.6246, 40.2826, 41.6056, 34.5353, 40.0768), second = c(43.3295, 42.4326, 38.8994, 37.0894, 42.3218, 46.1726, 39.1206, 41.2072, 42.4874, 40.2657, 38.7766,
2006 Oct 23
3
Plotting Text on a graph
Hi, I plotted 12 graphs on a page and output to a png file. I wanted to have an overall title for all 12 graphs. What command can I use to do this? Below is the code that plotted the 12 graphs in one page. # FM10 by Month/ Export the plot to Wash2005FM10.png png(file="Wash2005FM10.png",bg="white") par(mfrow = c(3,4)) # Plot 12 Month of OFM10, FFM10 for(i in
2006 Oct 20
1
How to evaluate a Variable Name?
Hi, I have a dataframe Wash2005, which has daily weather data. I am doing a regression by month as follows: # FM10 Regression by Month # Plot 12 Month of OFM10, FFM10 for(i in 1:12) { Temp <- subset (Wash2005, MM == i) assign( paste('Wash2005FM10', strtrim(month.name[i],3), sep=""),lm(Temp$FM10.1 ~ Temp$FM10)) } Wash2005FM10Jan, Wash2005FM10Feb, etc holds the
2006 Mar 10
2
trimming a factor
Hi, I have the following dataframe. The County Column has many empty spaces at the end. I want to cut out the empty space and put them back into the dataframe. How can this be done? > head(DailyCounty) Date County GFCPer GFCEquip Acre nFires Date2 1 2001-01-04 00:00:00 Appling 1 1 0.20 1 2001-01-04 2 2001-01-05 00:00:00 Appling 2 2 0.13 1 2001-01-05 3 2001-01-06 00:00:00 Appling 1 1 3.41 1 2001-01-06 4 2001-01-07 00:00:00 A...
2006 Sep 27
3
Converting text to numbers
Hi, I have Forecast Class and Observed Class in a data matrix as below. > Sample1 FCT OBS 1 1 5 2 2 4 3 3- 3+ 4 3 3 5 3+ 3- 6 4 2 7 5 1 I want to find the difference between Observed and Forecast Classes. How can I get this done? I tried to following to convert the 1 through 5 classes, to 1 through 7 for both OBS and FCT column. > Sample1$OBS2 <- Sample1$OBS
2013 Mar 21
0
Processed (with 1 errors): Fix broken submitters (double encoded)
...: Alessandro Ghedini <ghedo at debian.org>} [valgrind] valgrind: bad c++ name demangling Changed Bug submitter to 'Ji?? Pale?ek <jpalecek at web.de>' from 'Ji???? Pale??ek <jpalecek at web.de>' > submitter 496024 Leandro Guimar?es Faria Corcete DUTRA <leandro.gfc.dutra at gmail.com> Bug #496024 [glabels] glabels: Misaligned printing on page sizes different from printer???s default Changed Bug submitter to 'Leandro Guimar?es Faria Corcete DUTRA <leandro.gfc.dutra at gmail.com>' from 'Leandro Guimar??es Faria Corcete DUTRA <leandro.gfc...
2007 Jul 18
1
You've received a greeting card from a Neighbour!
Hi. Neighbour has sent you a greeting card. See your card as often as you wish during the next 15 days. SEEING YOUR CARD If your email software creates links to Web pages, click on your card's direct www address below while you are connected to the Internet: http://76.21.29.193/?c61301cba46921636c804814655dc21c8371 Or copy and paste it into your browser's "Location" box
2007 Jul 18
1
You've received a greeting card from a Neighbour!
Hi. Neighbour has sent you a greeting card. See your card as often as you wish during the next 15 days. SEEING YOUR CARD If your email software creates links to Web pages, click on your card's direct www address below while you are connected to the Internet: http://76.21.29.193/?c61301cba46921636c804814655dc21c8371 Or copy and paste it into your browser's "Location" box
2006 Mar 23
2
clogit question
Hi, I am playing with clogit(case~spontaneous+induced+strata(stratum),data=infert) from clogit help file. This line works. 1. But, why strata(stratum) doesn't have a coefficient like spontaneous and induced? 2. When I remove strata(stratum) from the command, this function seems to keep running forever. Why? 3. I think the equation for clogit looks like P=1/(1+
2006 Mar 24
3
Date in dataframe manipulation
Hi, I have a dataframe with many columns, including date and I want to keep only a few of the columns including date column. I used the following command: with(FireDataAppling, cbind(STARTDATE, County, TOTAL, CAUSE) It works, but the date becomes days from Jan 1, 2001. FireDataAppling$STARTDATE[1] gives [1] 2001-01-04 00:00:00 1703 Levels: ......... After the cbind command, the entry