Displaying 2 results from an estimated 2 matches for "fcarrillo".
Did you mean:
carrillo
2008 Oct 16
1
package Utils Sweave Example Error
...2 : term hide
3 : echo print term verbatim
4 : term verbatim
5 : echo term verbatim
6 : echo term verbatim eps pdf
7 : echo term verbatim eps pdf
You can now run LaTeX on 'Sweave-test-1.tex'
> texi2dvi("Sweave-test-1.tex", pdf=TRUE) # Error here
C:/Documents and Settings/fcarrillo/Desktop/Sweave-test-1.tex:11: Missing
C:/Documents and Settings/fcarrillo/Desktop/Sweave-test-1.tex:11:
C:/Documents and Settings/fcarrillo/Desktop/Sweave-test-1.tex:11: Extra
C:/Documents and Settings/fcarrillo/Desktop/Sweave-test-1.tex:11: Missing
C:/Documents and Settings/fcarrillo/Desktop/S...
2010 Jun 23
1
Plotting Data on a Map
...d 'rgdal' and 'maptools' much
but it appears to be a great way bring map data into R.
Please take a look at the comments and let me know if I need to
explain better what I am trying to accomplish.
library(rgdal)
library(maptools)
library(ggplot2)
dsn="C:/Documents and Settings/fcarrillo/Desktop/Software/R Scripts
and Datasets/NCTC/Data Analisys II/Data 4 Data Analysis II March 2009-
March2010/Data"
wolves.map <- readOGR(dsn=dsn, layer="PNW_wolf_habitat_grid")
class(wolves.map)
dim(wolves.map)
head(wolves.map,1)
names(wolves.map)
gpclibPermit()
wolves.ds <- for...