Displaying 5 results from an estimated 5 matches for "region2".
Did you mean:
region
2004 May 03
1
Speed up graphics output?
...","long","lat","cluster")
#Set up screen device
#split 2x2 - permits 1 map per section
par(bg="white")
split.screen(c(2,2))
#Load maps once only
w <- read.shape("c:\\data\\region1.shp", dbf.data = TRUE)
x <- read.shape("c:\\data\\region2.shp", dbf.data = TRUE)
y <- read.shape("c:\\data\\region3.shp", dbf.data = TRUE)
z <- read.shape("c:\\data\\region4.shp", dbf.data = TRUE)
#Loop through the clusters and produce maps of each region
#The base maps stay the same with the exception of map1
#which has th...
2016 Jan 25
3
troubleshoot samba - Could not convert sid - problem
...inbind. But,
obviously, changing different ranges does not really help with our
environment.
Below is my smb.conf (with fake domain-names), can i ask where i should
look at for my troubleshooting: Any pointers and opinions will be
appreciated.
###
# Global Setting
###
[global]
realm = DOMAIN2.REGION2.MS.LOCAL
workgroup = DOMAIN2
netbios name = FS02
security = ADS
kerberos method = secrets and keytab
encrypt passwords = yes
#
idmap config * : backend = tdb
idmap config * : range = 1000000-9999999
idmap config DOMAIN2 : base_rid = 1000
idmap config DOMAIN2 : backend = rid
idmap confi...
2006 Feb 10
0
- Function to export files
...\\.", sep = "\\")
d<-read.table(choose.files(default = wd1, caption =
"Escolher o Ficheiro de Input - *.txt ", multi = FALSE),
head=T,sep="\t",dec=".")
return(d)}
reg<-"Region1"
import(reg)
reg<-"Region2"
import(reg)
export<-function(wd0,var1,trim){
wd1<-paste(wd,wd0,trim,"Output\\.", sep = "\\")
d<-
write.table(var1,"C:/Teste/Region/Trim/Output/var1.txt",sep="\t",dec="."
,row.names=F)
retur...
2000 Aug 02
1
Re: [R] problem clipping R postscript plots within latex (PR#625)
On Wed, 2 Aug 2000 p.dalgaard@biostat.ku.dk wrote:
> Martin Maechler <maechler@stat.math.ethz.ch> writes:
>
> > (from R-help)
> > PD> Stephen Eglen <stephen@cogsci.ed.ac.uk> writes:
> >
> > > > > generated by R into a latex document. Specifically, the latex package
> > > > > graphicsx allow you to specify the
2018 May 11
2
add one variable to a data frame
Sarah et. al.:
As a matter of aesthetics (i.e. my personal ocd-ness) I prefer using the
public API of an object, i.e. *not* to makes use of the representation of a
factor as essentially an integer vector with labels, but rather to use its
documented behavior. (Feel free to ignore this remark!)
Anyway,
>cumsum(!duplicated(dat1$B))
[1] 1 1 1 2 2 3 3 3 3 3 4 4
will do it.
This is very