Displaying 20 results from an estimated 700 matches similar to: "Creating multiple maps so points don't overlap"
2003 Oct 01
1
hypergeometric & population estimates
"help"
We want to estimate the number of caribou in Jasper. We recently conducted
an aerial survey and saw 70 uncollared caribou and 8 of 11 collared
caribou. We want to estimate the number of caribou in this population with
95% confidence limits. Gary White uses the hypergeometric distribution and
determines the population estimates using maximum likelihood and 95%CL as
2010 Oct 28
1
adding copies of rows toa data frame based upon start and end dates
Hello All and thanks in advance for any advice.
I have a data frame with rows corresponding radio-collared animals (see
sample data below). There is a start date (DATESTART), and end date
(DATEEND), and the number of days on air (DAYSONAIR). What I would like to
do is add a column called DATE to so that each row ID has a row for every
day that the radio collar was on the air while copying all
2012 Sep 24
2
Latitude Longitude to SPDF
Hi Team,
Need your guidance in building SPDF objects from Latitude, Longitude
Information available.
I am using package "plotGoogleMaps" which is really awesome but it requires
SPDF objects to build the maps.
I have a data frame which have Latitude and Longitude information and
wanted to convert it in SPDF for making maps.
Please help me to find suitable package or function to convert
2013 Oct 29
2
Hoy reunión del "Grupo de Usuarios de R de Madrid - martes 29-octubre"....
Deberías instalar también, como poco, ggmap. RStudio no suele venir nunca mal.
No sé si hay wifi en el bar para instalar las últimas dependencias...
Un saludo,
Carlos J. Gil Bellosta
http://www.datanalytics.com
El día 29 de octubre de 2013 13:44, Miguel Fiandor Gutiérrez
<mfiandor en gmail.com> escribió:
> qué recomendáis llevar instalado además de R?
> R-studio?, algunos paquetes
2013 Oct 29
2
Hoy reunión del "Grupo de Usuarios de R de Madrid - martes 29-octubre"....
Hola a todos:
efectivamente, esas son las librerias que convine tener instaladas.
Llevaré los datos que utilizaremos en un pendrive (por si acaso falla la
wifi) y también el *.md del código para poder seguir la demo sin escribir
todo el código! Para esto, yo creo que lo mejor es abrir el *.md con R
Studio.
Esta tarde nos vemos!
--
Beatriz Martínez
@_bmartinez_
2013 Oct 29
2
Hoy reunión del "Grupo de Usuarios de R de Madrid - martes 29-octubre"....
Hola Beatriz,
Si me pasas el *.md lo subo a un Dropbox y si no es muy grande lo subo a
R-Hispano (linkándolo a la agenda)....
Saludos,
Carlos.
El 29 de octubre de 2013 15:56, Gregorio R. Serrano
<grserrano@ccee.ucm.es>escribió:
> Hola.
>
> ¿Nos podemos descargar el material de alguna parte antes de ir?
>
> Gracias
>
>
> El 29 de octubre de 2013 14:58, Beatriz
2013 Oct 29
2
Hoy reunión del "Grupo de Usuarios de R de Madrid - martes 29-octubre"....
Hola,
Una breve nota para recordaros que hoy tendremos la reunión del "Grupo de
Usuarios de R de Madrid".
La reunión de hoy será un Taller práctico "Introducción a la elaboración de
Mapas con R".
¡Os esperamos!
Gracias,
Carlos Ortega
www.qualityexcellence.es
El 16 de octubre de 2013 14:58, Carlos Ortega
<cof@qualityexcellence.es>escribió:
> Hola,
>
> La
2013 Mar 15
1
Reassign values based on multiple conditions
Hi all,
I have a simple data frame of three columns - one of numbers (really a
categorical variable), one of dates and one of data.
Imagine:
collar date data
1 01/01/2013 x
2 02/01/2013 y
3 04/01/2013 z
4 04/01/2013 a
5 07/01/2013 b
The 'collar' is a GPS collar that's been worn by an animal for a certain
amount of time, and then may have been worn by a different animal after
2013 Oct 29
2
Hoy reunión del "Grupo de Usuarios de R de Madrid - martes 29-octubre"....
Aquí viene, ok.<http://r-es.org/tiki-index.php?page=Grupo%20de%20Inter%C3%A9s%20Local%20de%20Madrid%20-%20GIL%20Madrid>
Saludos,
Miguel Fiandor
El 29 de octubre de 2013 10:00, Miguel Fiandor Gutiérrez <mfiandor@gmail.com
> escribió:
> Se me había olvidado por completo, gracias por recordarlo!, hora y lugar?
>
> Saludos,
>
> Miguel
2013 Oct 29
1
Hoy reunión del "Grupo de Usuarios de R de Madrid - martes 29-octubre"
Para los perezosos como yo, para el talleR de mapas hoy en Madrid:
install.packages(c("maps",
"sp",
"maptools",
"rgdal",
"rgeos",
"mapproj",
"RgoogleMaps",
"plotGoogleMaps",
2005 Jan 29
0
test comparing spatial point patterns?
I'm working with animal relocation data. These are x-y coordinates of
radio-collared coyotes over a period of time. Relocations are far enough
apart in time to be considered independent. We want to test if the pattern
of space-use has changed from one year to the next. Relocations roughly
follow a 2D Gaussian distribution, but points are often clustered near one
or more
2007 Oct 30
6
trouble installing building packages from source using R 2.6.0 on Ubuntu Gutsy AMD64
I have recently upgraded to Ubuntu Gutsy and, for the first time, am
using a 64-bit installation. After failing miserably to install R from
source, not a problem for me in the past with a 32-bit install, I went
the route of using the Debian Etch build. This went smoothly, but I am
unable to update my numerous R and BioConductor packages, getting
non-zero exit status errors on each package. Is
2013 Mar 29
1
Create values based on a table of conditions
Hi R help forum,
I have a simple data frame of four columns - one of numbers (really a
categorical variable), one of dates and one
of data. I have over 500,000 data points to work with, spread over 40
files, each named after a different animal.
These are contact data recorded by proximity loggers over two years
between the animals of the file name and
collars being worn by other animals. The
2005 Dec 09
1
Residuals from GLMMs in the lme4 package
Hello there
This is the first time I have used r-help message board so I hope I have got
the right address.
I am trying to check the residuals of a GLMM model(run using the package
lme4). I have been able to check the residiuals of REMLs in lme4 using the
following:
m1<-lmer(vTotal~Week+fCollar+ (1|fCat), collars)
res<-resid(m1)
plot(res)
qqnorm(res)
library(MASS)
par(mfrow=c(2,3))
2011 Feb 27
1
tricky (for me) merging of data
Dear List,
I am having trouble with a tricky merging task. I have one data sheet that
has dates (continuous) that radio collared individuals were monitored via
telemetry. I have a different sheet containing data from instances where
individuals were recaptured and associated body condition data was recorded
(sheet 2). I would like to merge the two sheets by individual and date (I
can do this
2006 Jan 30
4
Logistic regression model selection with overdispersed/autocorrelated data
I am creating habitat selection models for caribou and other species with
data collected from GPS collars. In my current situation the radio-collars
recorded the locations of 30 caribou every 6 hours. I am then comparing
resources used at caribou locations to random locations using logistic
regression (standard habitat analysis).
The data is therefore highly autocorrelated and this causes Type
2013 Oct 30
3
Material y videos disponibles - Reunión del "Grupo de Usuarios de R de Madrid - martes 29-octubre"....
Hola,
Ya está disponible el material (presentación, código) del Taller de ayer,
así como los videos.
Todo el detalle lo podéis encontrar en: http://www.r-es.org/GILMadrid
*Gracias a todos por la buena asistencia que tuvimos!.*
Saludos,
Carlos Ortega
www.qualityexcellence.es
[[alternative HTML version deleted]]
2018 Apr 18
0
idmap_ad overlap with domain and sub-domain overlap
On Wed, 18 Apr 2018 10:02:53 -0400
Wvu Hpc via samba <samba at lists.samba.org> wrote:
> Hello,
>
> We are in process of providing access to a AD connected master domain
> and one its subdomains to one of our SAMBA 4.6.2 file-share servers.
> The samba server is a member of the MASTER domain. The problem is we
> have cases where the same person has an account in both the
2018 Apr 18
0
idmap_ad overlap with domain and sub-domain overlap
On Wed, 18 Apr 2018 10:52:12 -0400
Wvu Hpc <wvu.hpc at gmail.com> wrote:
> Hi Rowland,
>
> Thanks for the help and ideally I would like to get rid of the sub
> domain all together but that is probably not going to happen.
>
> So couple comments and please forgive any of my ignorance.
No problem.
>
> For your second question, all users in the subdomain who have
2013 Apr 26
2
Remove reciprocal data from a grouped animal social contact dataset
Hi r-help forum,
I have been collecting contact data (with proximity logger collars)
between a few different species of animal. All animals wear the
collars, and any contact between the animals should be detected and
recorded by both collars. However, this isn't always the case and more
contacts may be recorded on one collar of the two. This is fine, it
depends on battery life and other