Displaying 20 results from an estimated 1580 matches for "geography".
2011 Dec 03
1
side-by-side map with different geographies using spplot
...ay a single thematic map for a city using spplot as follows:
spplot(Minneapolis,"Thematic_Data_Column")
But, calling the function again for Cleveland just overwrites the
window. I am unsure how to use spplot's layout tools with two different
geographies. Most examples use a single geography and multiple attribute
columns. Alternatively, is there a way to use "par" together with spplot
to allow for multiple spplot calls?
thank you,
-david
2012 Nov 07
2
LMER vs PROC MIXED estimates
...years)
and still finding my way...I have been trying to replicate PROC MIXED
results in LMER but noticed that the estimates are coming different.
My SAS code is as follows (trying to randomise X2 and Intercept):
PROC MIXED DATA = <DATASET NAME> NAMELEN=100 METHOD=REML MAXITER=1000;
CLASS GEOGRAPHY;
MODEL y = X1 X2 X3/SOLUTION;
RANDOM INTERCEPT X2/SOLUTION SUBJECT = GEOGRAPHY;
ODS OUTPUT SOLUTIONR=RANDOM_EFFECT;
ODS OUTPUT SOLUTIONF= FIXED_EFFECT;
RUN;
the equivalent code that I was writting in R is as follows:
testdata <- read.csv("adstest.csv",header=TRUE,sep=",&qu...
2009 Jul 30
2
CRAN + geography = Cranography
In response to an earlier discussion about finding the
fastest/best/nearest CRAN site, I geocoded (using my geonames package)
the locations of the CRAN sites returned by getCRANmirrors. I've
mapped them here:
http://www.maths.lancs.ac.uk/~rowlings/R/Cranography/
The geocoding may have got it wrong, so if CRAN site maintainers want
to send me a real lat-long (in WGS 84 aka EPSG:4326) I'll
2004 Nov 02
2
Color schemes that work for people with color-deficient vision
A recent article in the earth science literature cited below and available at
http://geography.uoregon.edu/datagraphics/EOS/
points out that rainbow color schemes and mixtures of green and yellow
can be troublesome for people with color-deficient vision.
The authors propose alternative schemes that can be viewed and downloaded
in RGB, HSV, CMYK, and RGB256 formats from
http://geography.u...
2009 Nov 19
2
plot filled.contour over continent map
...; statements I can see the contourplot.
So I am doing something wrong, but I really have no idea what?
Anybody could help me out here?
Thanks in advance,
Matthias
-------------------------------------------------------------
Department of Earth & Environmental Sciences
Physical and Regional Geography Research Group
Regional climate studies
Celestijnenlaan 200E
3001 Heverlee (Leuven)
BELGIUM
Tel: + 32 16 326424
Fax: + 32 16 322980
http://geo.kuleuven.be/aow/
www.kuleuven.be/geography
-------------------------------------------------------------
[[alternative HTML version deleted]]
2013 May 02
2
rda variance partioning in vegan problems
...nce.
My question is related to partitioning the variance in rda (vegan) results
for multiple groups of variables. I have a high dimensional dataset with
79 explanatory variables and 9 response variables. Within those 79
explanatory variables there are ~8 groups (e.g. water chemistry, land cover,
geography, surficial geology, etc). To partition out their unique and
binary interactive variance, I run the ~30 conditioned RDAs necessary to
determine the "pure effects" of each group and the "pure binary
interactions" of those groups with each other.
My method for partitioning the v...
2013 Sep 08
0
PhD Studentship: Geographically Weighted Geodemographics [University of Liverpool]
...ngleton; Professor Chris Brunsdon
Industrial Partner: Office for National Statistics
Applicants are invited for a PhD studentship at the University of
Liverpool within the ESRC North West DTC. The studentship will be
supervised by Dr Alex Singleton and Professor Chris Brunsdon in the
Department of Geography and Planning; and is being conducted in
collaboration with the Office for National Statistics.
This three year advanced quantitative methods award will provide an
enhanced stipend of ?16,726 (tax free) alongside payment of tuition
fees. You will also have the opportunity to apply for additional
fu...
2003 Sep 21
3
Z aware interpolation
...consideration only x and y coordinates) so i can try to
modify it to take into consideration z values as well. I am not sure
it will work, or i can do it - but it worth a try - of course if this is not
already done.
Thanks,
Monica
Monica Palaseanu-Lovejoy
University of Manchester
School of Geography
Mansfield Cooper Building
Oxford Road, Manchester
M13 9PL, UK.
email: monica.palaseanu-lovejoy at stud.man.ac.uk
2013 Feb 04
6
Script for conditional sums of vectors
...r each "a" and "b" combination.
For example, where "a" = 1 and "b" = 1, the output is 400+200+300 = 900.
Please would anyone be able to provide a script to create my desired output?
Many thanks in advance,
Ben Gillespie
Research Postgraduate
School of Geography
University of Leeds
Leeds
LS2 9JT
2011 Apr 17
1
How to retrieve a vector of a data.frame's variable attributes?
..."forest" "savannah"
$class
[1] "labelled" "factor"
$label
[1] ecological zone
93 Levels: 10 quantiles of welfare ... year of the interview
$units
[1] class
24 Levels: '05 PPP USD / year cedis / year cedis /year class geo-1 ... years
$category
[1] geography
7 Levels: agriculture demography design expenditure geography ... welfare
I have tried:
hh <- hh[, order(attr(hh, "category"))]
hh <- hh[, order(attr(hh[, 1:100], "category"))]
hh <- hh[, order(attr(dimnames(hh), "category"))]
but all the right-hand side as...
2010 Jan 19
5
OT: Software for specific visualisation of data...ideas?
...f can be generated in a specific
software application for example? Any suggestions would be most
gratefully received by the student concerned.
Many thanks,
G
--
%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%
Dr. Gavin Simpson [t] +44 (0)20 7679 0522
ECRC, UCL Geography, [f] +44 (0)20 7679 0565
Pearson Building, [e] gavin.simpsonATNOSPAMucl.ac.uk
Gower Street, London [w] http://www.ucl.ac.uk/~ucfagls/
UK. WC1E 6BT. [w] http://www.freshwaters.org.uk
%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~...
2012 Jul 24
5
First value in a row
...n x1 x2 x3
01 10 NA NA .1
01 11 NA .2 .3
01 12 .4 .5 .6
I want to generate another column that consist of the first value in
each row from columns x1 to x3. That is
NewColumn
.1
.2
.4
Any input greatly appreciated,
Thanks,
Camilo
Camilo Mora, Ph.D.
Department of Geography, University of Hawaii
2013 Jul 12
2
"Proper" way to use a "hidden" function in an R-package?
...the proper way to have hidden functions -- should I
simply not export them to the namespace and use the ::: operator to
call them (which is what I currently do)?
--j
--
Jonathan A. Greenberg, PhD
Assistant Professor
Global Environmental Analysis and Remote Sensing (GEARS) Laboratory
Department of Geography and Geographic Information Science
University of Illinois at Urbana-Champaign
607 South Mathews Avenue, MC 150
Urbana, IL 61801
Phone: 217-300-1924
http://www.geog.illinois.edu/~jgrn/
AIM: jgrn307, MSN: jgrn307 at hotmail.com, Gchat: jgrn307, Skype: jgrn3007
2005 Oct 21
2
Finding the neighbors of the point
Dear all,
I got point data of trees. I was wondering if anybody has experience in searching the neighbors within a specified distance efficiently.
X Y Z
99 34 65
98 35 29
98 34 28
99 33 33
98 32 23
99 33 21
99 33 22
99 32 24
99 30 23
...
What I want to do is : searching for the neighbors with a distance R for each tree & the neighbor must have a bigger Z.
2013 Apr 16
4
Singular design matrix in rq
...importantly, suggestions for
how to solve this? I'm just trying to fit a smoothed hull to the top of
the data cloud (hence the large df).
Thanks!
--jonathan
--
Jonathan A. Greenberg, PhD
Assistant Professor
Global Environmental Analysis and Remote Sensing (GEARS) Laboratory
Department of Geography and Geographic Information Science
University of Illinois at Urbana-Champaign
607 South Mathews Avenue, MC 150
Urbana, IL 61801
Phone: 217-300-1924
http://www.geog.illinois.edu/~jgrn/
AIM: jgrn307, MSN: jgrn307@hotmail.com, Gchat: jgrn307, Skype: jgrn3007
[[alternative HTML version deleted]]
2002 Mar 20
1
Installing GRASS_0.1-4.tar.gz on RedHat7.1 Linux
...erpreted interface, use:
"R INSTALL --configure-args=--interp GRASS"
ERROR: configuration failed for package `GRASS'
----------------------------------------------------
Thanks.
Ulrich
__________________________________________________
Ulrich Leopold MSc.
Department of Physical Geography
Institute for Biodiversity and Ecosystem Dynamics
Faculty of Science
University of Amsterdam
Nieuwe Achtergracht 166
NL-1018WV Amsterdam
Phone: +31-(0)20-525-7456 (7451 Secretary)
Fax: +31-(0)20-525-7431
Email: uleopold at science.uva.nl
http://www.frw.uva.nl/soil/Welcome.html
Check us also out...
2013 Mar 27
9
conditional Dataframe filling
...in which TRUE gets 0 but if
false then add 1 to the cell to the left. So the results for the
example above should be something like:
a b c d
0 0 0 0
1 2 3 0
1 0 1 2
I wonder if you may know?.
Thanks,
Camilo
Camilo Mora, Ph.D.
Department of Geography, University of Hawaii
Currently available in Colombia
Phone: Country code: 57
Provider code: 313
Phone 776 2282
From the USA or Canada you have to dial 011 57 313 776 2282
http://www.soc.hawaii.edu/mora/
2012 May 02
6
Quickest way to make a large "empty" file on disk?
...oo large to store in main memory. I'm asking because
I'm going to use this file in conjunction with mmap to do parallel writes
to this file. Say, I want to create a blank file of 10,000 floating point
numbers.
Thanks!
--j
--
Jonathan A. Greenberg, PhD
Assistant Professor
Department of Geography and Geographic Information Science
University of Illinois at Urbana-Champaign
607 South Mathews Avenue, MC 150
Urbana, IL 61801
Phone: 415-763-5476
AIM: jgrn307, MSN: jgrn307@hotmail.com, Gchat: jgrn307, Skype: jgrn3007
http://www.geog.illinois.edu/people/JonathanGreenberg.html
[[alternative HTML...
2002 Sep 12
4
normal score transform
...transform my data with normal score transform, do some
geostatsitical predictions and would like to transform the estimated values
back including the estimation variance.
Any suggestions?
Ulrich
--
__________________________________________________
Ulrich Leopold MSc.
Department of Physical Geography
Institute for Biodiversity and Ecosystem Dynamics
Faculty of Science
University of Amsterdam
Nieuwe Achtergracht 166
NL-1018WV Amsterdam
Phone: +31-(0)20-525-7456 (7451 Secretary)
Fax: +31-(0)20-525-7431
Email: uleopold at science.uva.nl
http://www.frw.uva.nl/soil/Welcome.html
Check us also out...
2004 Mar 26
1
How to do the significant test on Local Moran's I
...rmail/r-help/2003-April/030754.html. Actually, I have a question about significant of Local Moran I too. based on it's function:
Ii = zi [¦²j wijzj],
I wonder how can I calculate it's z-value.
Any suggest will be greatly appreciated.
Louis Zhang
Dept of Geography and Planning
The Univ. of Toledo
---------------------------------
[[alternative HTML version deleted]]