Package move. July 7, 2015
|
|
|
- Lambert Holland
- 10 years ago
- Views:
Transcription
1 Type Package Package move July 7, 2015 Title Visualizing and Analyzing Animal Track Data Version Date Author Bart Kranstauber Maintainer Bart Kranstauber Contains functions to access movement data stored in movebank.org as well as tools to visualize and statistically analyze animal movement data, among others functions to calculate dynamic Brownian Bridge Movement Models. Move helps addressing movement ecology questions. License GPL (>= 3) URL LazyLoad yes Depends geosphere (>= 1.4-3), methods, sp, raster (>= ), rgdal, R (>= ) Suggests RCurl, adehabitathr, adehabitatlt, circular, ggmap, mapproj, maptools, testthat NeedsCompilation yes Repository CRAN Date/Publication :11:01 R topics documented: move-package UD-class unUsedRecords angle as.data.frame brownian.bridge.dyn brownian.motion.variance.dyn burst
2 2 R topics documented: burstid citations contour coordinates corridor DBBMM-class DBBMMStack-class dbgbvariance-class dbmvariancetmp distance dynbgb dynbgb-class dynbgbvariance equalproj getmotionvariance getmovebank getmovebankanimals getmovebankdata getmovebankid getmovebanksensors getmovebanksensorsattributes getmovebankstudies getmovebankstudy getvolumeud hrbootstrap iddata interpolatetime leroy lines move Move-class move2ade movebanklogin MovebankLogin-class MoveBurst movestack MoveStack-class n.indiv n.locs outerprobability plot plotbursts points raster raster2contour ricky searchmovebankstudies seglength
3 move-package 3 sensor show speed split sptransform subset-method summary time.lag timelag timestamps timesummary trackid turnanglegc unusedrecords< Index 67 move-package An overview of the functions in this package Details move is a package that contains functions to access movement data stored at as well as tools to visualize and statistically analyse animal movement data. Move addresses movement ecological questions. The package implements classes for movement data and supports Creation of Move objects (see Move-class) representing animals and their track Calculation of utilization distributions using the dynamic Brownian bridge Movement Model Plotting tracks, utilization distributions and contours Access to raster, n.col, projection and coordinates Different CRS projection methods such as longlat or aeqd I. Creating Move objects Move objects can be created from files with the function: move To create an object containing one animal track movestack To create an object containing multiple move objects getmovebankdata To create a Move or a MoveStack object with data from Movebank II. Calculation of the utilization distribution With the function below the dynamic Brownian Bridge Movement Model calculates the utilization density from a Move object:
4 4.UD-class brownian.bridge.dyn To calculate the utilization density III. Accessing values coordinates as.data.frame n.locs timelag projection Track-coordinates of the Move Object A data.frame with the important data of the Move Object The number of locations The time lags between the locations The projection method of the track/raster IV. Plotting data The track or the utilization distribution can be plotted with the following functions: plot or the track (see Move-class) image contour plots the utilization distribution with fixed width and height ratio (see DBBMM-class) plots the utilization distribution fitted to the window adds the contours of utilization distribution to a plot Bart Kranstauber, Maintainer: Bart Kranstauber <[email protected]>, < [email protected] References Move package vignette move on CRAN.UD-class The UD class This Class represents a simple abstraction of the utilization distribution, UD, where all probabilities necessarily sum to one. It is exported for experienced user to program against.
5 .unusedrecords 5 Slots crs part of the Raster-class data part of the Raster-class extent part of the Raster-class file part of the Raster-class history part of the Raster-class names part of the Raster-class legend part of the Raster-class method stores the method that was used to calculate the utilization distribution (UD), e.g. dynamic Brwonian Bridge ncols part of the Raster-class nrows part of the Raster-class rotated part of the Raster-class rotation part of the Raster-class title part of the Raster-class z part of the Raster-class Bart Kranstauber.unUsedRecords.unUsedRecords and.unusedrecordsstack class The class.unusedrecords and.unusedrecordsstack is mostly an internal class that is made public to make inheritance easier. It is a basal class that stores unused records. Slots timestampsunusedrecords unused timestamps sensorunusedrecords unused sensor information dataunusedrecords further unused data
6 6 angle angle angle information from a track or track stack This function returns a summary about angle related measurements of a track or track stack. These are: average azimuth, variance of azimuth, standard error of azimuth. ## S4 method for signature.movetracksingle angle(x) ## S4 method for signature.movetrackstack angle(x) ## S4 method for signature.movetracksingle anglesummary(x) ## S4 method for signature.movetrackstack anglesummary(x) x Move or MoveStack object Value Angles in degrees load(system.file("extdata", "move.rdata", package="move"),.globalenv) ## Not run: stack <- movestack(list(leroy,leroy)) angle(leroy) #angles from a Move object angle(stack) #angles from a MoveStack object anglesummary(leroy) # summary of angle measures of a Move object anglesummary(stack) # summary of angle measures of a MoveStack object ## End(Not run)# failed on cran build
7 as.data.frame 7 as.data.frame Return a Data Frame Function to create a data.frame with the information of a spatial data frame contained in the Move object. ## S4 method for signature Move as.data.frame(x,...) x an object of the Move-class... additional arguments to be passed to or from methods Details as.data.frame extracts the sdf argument from a Move object (see Move-class) ## create a move object data <- move(system.file("extdata","leroy.csv.gz",package="move"))[99:150,] ## returns a data.frame with all information stored in the spatial data frame of the move object head(df <- as.data.frame(data)) brownian.bridge.dyn Creates a DBBMM object The brownian.bridge.dyn function uses a Move object (see Move-class) to calculate the utilization distribution, UD, of the given track. It uses the dynamic Brownian Bridge Movement Model (dbbmm) to do so. The dbbmm has the advantage over the other Brownian Bridge Movement Model that changes in behavior are accounted for. It does so by using the behavioral change point analysis in a sliding window. For details see references.
8 8 brownian.bridge.dyn brownian.bridge.dyn(object, raster, dimsize, location.error, margin=11, window.size=31, ext=.3, bbox=na,...) object an object of the Move-class raster a RasterLayer object or numeric value. A numeric value for raster is interpreted as the resolution of the square raster cells (in map units); the according raster will be calculated internally. If a RasterLayer is provided the brownian.bridge.dyn starts to calculate the UD based on that raster. dimsize numeric. dimsize is only used if raster is not set. dimsize is interpreted as the number of cells along the largest dimension of the track. The according raster will be calculated internally. Default is 10 location.error single numeric value or vector of the length of coordinates that describes the error of the location (sender/receiver) system in map units, or a character string with the name of the column containing the location error. margin window.size ext bbox Details The margin used for the behavioral change point analysis. The size of the moving window along the track. Larger windows provide more stable/accurate estimates of the brownian motion variance but are less well able to capture more frequent changes in behavior. Describes the amount of extension of the bounding box around the animal track. It can be numeric (same extension into all four directions), vector of two (first x, then y directional extension) or vector of four (xmin, xmax, ymin, ymax extension). Default is.25 (extends the bounding box by 25%). Only considered in combination with a numeric raster argument or the dimsize argument. vector with 4 numbers defining a bounding box for the raster... for additional arguments, for example bursttype which is a character vector with the name of burst type for which the UD needs to be calculates in case a bursted brownian bridge is calculated There are four ways to launch the brownian.bridge.dyn function which are as follows: 1. Use a raster A RasterLayer object is set for the raster argument which is then used to calculate the UD. 2. Set the cell size To set the cell size, set a numeric value for the raster argument without providing dimsize. The numeric raster argument is used as the cell sizes of the raster. 3. Set the number of cells (col/row) To set the number of cells along the largest dimension a numeric dimsize argument can be set. 4. Using default raster
9 brownian.bridge.dyn 9 When there are no values set, the default raster value is used to calculate and create a RasterLayer object, which is returned to the same function. Note: depending on the size of the area of interest, the default cell size value can result in a large number of cells which may take a very long time to calculate! The function prints an estimate of the size of the computational task ahead. This can give an indication of how long the computation is going to take. It should scale roughly linearly with the duration of the computations. In our experience 10e9 takes about a minute with an average laptop. There is one further argument that can be given: time.step. It correspond to the size of the timer intervals taken for every integration step (in minutes). If left NULL 15 steps are taken in the shortest time interval. Note Note that the first few and last few segments of the trajectory are omitted in the calculation of the UD since a lower number of estimates for the Brownian motion variance are obtained for those segments. Thanks to Ryan Nielson for making the BBMM package that served as an example for early versions of this code. Bart Kranstauber, References Kranstauber, B., Kays, R., LaPoint, S. D., Wikelski, M. and Safi, K. (2012), A dynamic Brownian bridge movement model to estimate utilization distributions for heterogeneous animal movement. Journal of Animal Ecology. doi: /j x ## create a move object data <- move(system.file("extdata","leroy.csv.gz",package="move"))[1:90,] ## change projection method to aeqd and center the coordinate system to the track data2 <- sptransform(data, CRSobj="+proj=aeqd +ellps=wgs84", center=true) ## create a DBBMM object dbbmm <- brownian.bridge.dyn(object=data2, location.error=12, dimsize=45, ext=.3, time.step=600, margin=15)
10 10 brownian.motion.variance.dyn brownian.motion.variance.dyn Calculates the dynamic brownian motion variance A function to calculate the dynamic brownian motion variance for a movement track. It can be used by advanced programmers to program against. ## S4 method for signature.movetracksingle,numeric,numeric,numeric brownian.motion.variance.dyn(object, location.error, window.size, margin) Value object An object of the Move-class, that can be used for variance calculation. It needs to be in a flat coordinate system. location.error A numeric vector with the location error. window.size margin The window size used for the variance calculation. The margin size used for variance calculation. An object of the type dbmvariance is returned Bart Kranstauber References Kranstauber, B., Kays, R., LaPoint, S. D., Wikelski, M. and Safi, K. (2012), A dynamic Brownian bridge movement model to estimate utilization distributions for heterogeneous animal movement. Journal of Animal Ecology. doi: /j x See Also brownian.bridge.dyn data <- move(system.file("extdata","leroy.csv.gz",package="move"))[1:80,] data2 <- sptransform(data, CRSobj="+proj=aeqd +ellps=wgs84", center=true) dbmvar <- brownian.motion.variance.dyn(object=data2, location.error=rep(23.5,n.locs(data2)), margin=13, window.size=31) dbmvar
11 burst 11 burst Bursting a track Bursting a track by specified variable ## S4 method for signature Move,character burst(x, f,...) x f a Move object a character, factor, or numeric that indicates how to burst the coordinates of a Move object. It must be one shorter than the number of locations, because there are always one less segments of a track than coordinates... not used Details The burst function bursts (divides) a track in segments that are specified by the burstids (e.g. behavioral annotations). It allows to investigate different parts of a track according to supplied variables like day and night, movement and rest, and so on. test <- move(system.file("extdata","leroy.csv.gz", package="move")) behav <- c(rep(1:4,each=200), rep(5, 118)) testb <- burst(x=test, f=behav) head(testb)
12 12 citations burstid Returns burstid Obtain a factor returning the ids of behavioral categorization per segment ## S4 method for signature MoveBurst burstid(x) x a MoveStack object Value Returns a factor indicating the categorization Bart Kranstauber load(system.file("extdata", "move.rdata", package="move"),.globalenv) bursttrack <- burst(leroy,months(timestamps(leroy))[-1]) burstid(bursttrack) citations Extract the citation of a Move or MoveStack object The citations method returns or sets the citation of a track from a Move or MovesStack object. ## S4 method for signature.movegeneral citations(obj) ## S4 replacement method for signature.movegeneral citations(obj) <- value
13 contour 13 obj value Move or MoveStack object citation from class character load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) citations(leroy) #get the citation from a Move object citations(stack) #get the citation from a MoveStack object citations(leroy) <- "No paper available" #change the citation and set it for a Move object citations(stack) <- "Nothing to cite" #change the citation and set it for a MoveStack object contour Contour plot Contour plot of a RasterLayer from a DBBMM object. ## S4 method for signature.ud contour(x,...) ## S4 method for signature.udstack contour(x,...) x Details an object of the DBBMM-class or DBBMMStack-class... additional arguments like levels and nlevels, see details The contour function creates a shape of the area in which the animal can be found by a certain probability (i.e. the 90% contour describes the area in which the animal can be found with the 90% probability). One or several probabilities can be set with levels (numeric or vector of values between 0 and 1). If no value is set all contour lines are returned. You can also use nlevel to set a number of fixed distance levels. To change parameters of the contour or line plotting use the usual parameters of the plot function (like lwd, lty, and so on). You can also add the contour lines to a plot by adding add = TRUE.
14 14 coordinates load(system.file("extdata", "move.rdata", package="move"),.globalenv) ## to add a 50% and 95% contour to a plot from DBBMM object dbbmm plot(leroydbbmm) contour(leroydbbmm, levels=c(.5,.95), add=true) coordinates Extract the track coordinates from a Move/MoveStack object The coordinates method extracts the coordinates of a track. ## S4 method for signature Move coordinates(obj,...) obj A valid Move or MoveStack object... Additional arguments, see Details Details Returns a matrix with the coordinates of the track in a Move or MoveStack object. ## create a move object data <- move(system.file("extdata","leroy.csv.gz",package="move")) ## extract the coordinates coords <- coordinates(data)
15 corridor 15 corridor Corridor Corridor identifies movement track segments whose attributes suggest corridor use behavior ## S4 method for signature.movetracksingle corridor(x,speedprop=.75, circprop=.25, plot=false,...) ## S4 method for signature.movetrackstack corridor(x,speedprop=.75, circprop=.25, plot=false,...) x speedprop circprop plot Details Value Move or MoveStack numeric between 0 and 1, defines the proportion of speeds which are high enough to be a valid corridor point numeric between 0 and 1, defines the proportion of trajectories that are low enough to be a valid corridor point logical, if TRUE the track is plotted together with dots that indicate corridor points (color scale indicates how many corridor points are near by, less: blue, many: pink)... additional arguments like levels and nlevels, see details The corridor function uses the attributes of a movement step to identify movement steps that exhibit corridor use behavior. For each segment, the speed and the azimuth are calculated and assigned to the segment midpoint. A circular buffer is created around the midpoint of each segment whose radius is equal to half the segment length. The segment azimuth (180 >= azimuth > -180) is then converted into a new unit (the pseudo-azimuth 0 <= 360). Subsequent, the circular variance of the pseudo-azimuths of all segment midpoints that fall within the circular buffer are calculated. This identifies segments that are near parallel segments. Next, it is determined whether a segment s speed is higher than speedprop (by default the upper 25% speeds) and its circular variance is lower than circprop (by default the lower 25% of all variances). Segment midpoints that meet both of these requirements are considered as a corridor point, all others are considered non-corridor points. Finally, a corridor point is determined to be within a true corridor if within its buffer there are more corridor points than non-corridor points. The function returns a MoveBurst object or a list of MoveBurst objects (if a MoveStack is supplied). The MoveBurst dateframe stores the following information: - segment midpoint
16 16 DBBMM-class Note - speed - azimuth - pseudo-azimuth - circular variance The object is bursted by the factor that indicates whether a coordinate belongs to a corridor segment or not. The default values for the speedprop and circprop can be changed as per the users discretion using the according argument. If the result of the function is assigned to a variable a MoveBurst object is returned (see Value). References LaPoint, S., Gallery, P., Wikelski, M. and Kays, R. (2013), Animal Behavior, Cost-based Corridor Models, and Real Corridors. Landscape Ecology. doi: /s load(system.file("extdata", "move.rdata", package="move"),.globalenv) tmp <- corridor(leroy, plot=true) head(tmp) #if assigned to a variable, the coordinates are exported stack <- movestack(list(leroy[1:400,], ricky[1:500,])) stacktmp <- corridor(stack) #working with a stack DBBMM-class The DBBMM class Slots The DBBMM object is created within the brownian.bridge.dyn function from a Move object. It includes among others a raster object and probabilities. DBMvar Object of class "dbmvariancetmp": includes the window.size, margin, means, in.windows, break.list, and points of interest crs part of the Raster-class ext the extension factor set by the user data part of the Raster-class
17 DBBMMStack-class 17 extent part of the Raster-class file part of the Raster-class history part of the Raster-class legend part of the Raster-class method stores the method that was used to calculate the utilization distribution (UD), e.g. dynamic Brwonian Bridge ncols part of the Raster-class nrows part of the Raster-class rotated part of the Raster-class rotation part of the Raster-class title part of the Raster-class z part of the Raster-class Methods contour signature(object = "DBBMM"): adds a contour line to a plot image signature(object = "DBBMM"): plots the raster from a DBBMM object with fixed cell size ratio plot signature(object = "DBBMM"): plots the raster from a DBBMM object with re-size insensitive proportions proj4string signature(object = "DBBMM"): extracts the projection method of the raster stored within the DBBMM object raster signature(object = "DBBMM"): extracts the raster from the DBBMM object outerprobability signature(object = "DBBMM"): calculates the animal occurrence probabilities at the border of the raster DBBMMStack-class The DBBMMStack class The DBBMMStack object is created within the brownian.bridge.dyn function from a Move object. It includes among others a raster object and probabilities.
18 18 dbgbvariance-class Slots DBMvar Object of class "dbmvariance": includes the break.list and points of interest crs part of the Raster-class ext the extension factor set by the user extent part of the Raster-class filename part of the Raster-class layers part of the Raster-class method the method that was used to calculate the utilization distribution, e.g. dynamic Brwonian Bridge ncols part of the Raster-class nrows part of the Raster-class rotated part of the Raster-class rotation part of the Raster-class title part of the Raster-class z part of the Raster-class Methods contour signature(object = "DBBMMStack"): adds a contour line to a plot image signature(object = "DBBMMStack"): plots the raster from a DBBMMStack object with fixed cell size ratio plot signature(object = "DBBMMStack"): plots the raster from a DBBMMStack object with re-size insensitive proportions proj4string signature(object = "DBBMMStack"): extracts the projection method of the raster stored within the DBBMMStack object raster signature(object = "DBBMMStack"): extracts the raster from the DBBMMStack object outerprobability signature(object = "DBBMMStack"): calculates the animal occurrence probabilities at the border of the raster dbgbvariance-class Class to store the orthogonal and parallel variance This class stores the orthogonal and parellel variances calculated with the dynbgbvariance function.
19 dbmvariancetmp 19 dbmvariancetmp dbmvariancetmp class Slots The class dbmvariancetmp is mostly an internal class that is made public to make inheritance easier. It is a basal class that stores results of the dbbmm window.size The window size used for dbbmm calculation margin The margin used for dbbmm calculation means... in.windows... interest... break.list... distance distance information from a track or track stack DistanceSummary returns a summary of distance related measurements of a track or track stack, or for the distance function the distance between locations. ## S4 method for signature.movetracksingle distance(x) ## S4 method for signature.movetrackstack distance(x) ## S4 method for signature.movetracksingle distancesummary(x) ## S4 method for signature.movetrackstack distancesummary(x) x Move or MoveStack object
20 20 dynbgb Value All values are returned in meters if the projection of the coordinates is longlat, otherwise their in map units mostly meters as well. For longlat distance on a sphere is calculated using the ellipsoid else on a plane using Pythagoras. Check and set the projection of your Move or MoveStack object using the proj4string() function. load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) distance(leroy) #distances from a Move object distance(stack) #distances from a MoveStack object distancesummary(leroy) # summary of distance measures of a Move object distancesummary(stack) # summary of distance measures of a MoveStack object dynbgb Calculation of the dynamic Bivariate Gausian Bridge This function creates a utilization distribution according to the Bivariate Gaussian Bridge model. It returns an object of the class dynbgb-class. move raster locerr the move object or variance object used for calculating the ud if a.movetracksingle object is supplied this is converted into a dbgbvariance object using the dynbgbvariance function either the raster used for UD calculation or the resolution of the raster used for UD calculation the location errors used for the calculation Bart Kranstauber References Kranstauber, B., Safi, K., Bartumeus, F.. (2014), Bivariate Gaussian bridges: directional factorization of diffusion in Brownian bridge models. Movement Ecology 2:5. doi: /
21 dynbgb-class 21 data <- move(system.file("extdata","leroy.csv.gz",package="move")) [230:265,] ## change projection method to aeqd and center the coordinate system to the track dataaeqd <- sptransform(data, CRSobj="+proj=aeqd +ellps=wgs84", center=true) dbgb <- dynbgb(dataaeqd, locerr=9, raster=10, ext=2.15, windowsize=31, timestep=6, margin=15) plot(dbgb, col=hsv(sqrt(1:700/1000))) lines(dataaeqd) dynbgb-class dynbgb class This class stores the utilization density calculated using dynamic Bivariate Gausian Briges. It is an extention of the.ud class. Bart Kranstauber See Also.UD dynbgbvariance calculate variance for a track using a running window the function uses windowapply with the BGBvarbreak function in order to implement a dynaminc calculation of the variance
22 22 getmotionvariance equalproj Checks projections for being equal Checks whether all objects of a list are in the same projection ## S4 method for signature list equalproj(x) x a list of projected objects, like DBBMM or Raster objects, returning the projection string with with the function proj4string Details equalproj checks for equal projections using the function of identicalcrs from the package sp. It returns true if none of the objects have a proj4 string. Bart Kranstauber load(system.file("extdata", "move.rdata", package="move"),.globalenv) equalproj(list(leroydbbmm,leroydbbmm)) equalproj(list(leroy,leroydbbmm)) equalproj(list(leroy,ricky)) getmotionvariance Returns the estimated motion variance This function returns from an object where it has been calculated before getmotionvariance(x,...)
23 getmovebank 23 x... Currently un used A variance object or an UD object calculated using the dynamic Bivariate Gaussian Bridges or dynamic Brownian Bridges Bart Kranstauber See Also brownian.bridge.dyn, dynbgb load(system.file("extdata", "move.rdata", package="move"),.globalenv) getmotionvariance(leroydbbmm) getmotionvariance(dbbmmstack) getmovebank Creates an URL to download Data from Movebank An enhanced function to download data from Movebank by manually building an URL. This function should only be used by advanced programmers. getmovebank(entity_type, login,...) entity_type the entity_type of the data source login a MovebankLogin, if empty you ll be asked to enter your username or password... passing on additional arguments
24 24 getmovebankanimals getmovebankanimals Animals, tags and IDs in a Movebank study Returns the animals, their tags and IDs from a Movebank study getmovebankanimals(study, login) study login a character string (study name) or the numeric study ID as it is stored on Movebank an object of the MovebankLogin-class, if empty you ll be asked to enter your username or password Details getmovebankanimals belongs to the Movebank browsing functions and returns a data.frame that includes the animalid, animalname, id, sensor_type_id and tag_id from the requested study. Note See the browsemovebank vignette (move website download section) for more information about security and how to use Movebank from within R. ## Not run: getmovebankanimals(study=82207, login=login) ## End(Not run)
25 getmovebankdata 25 getmovebankdata Download data from Movebank getmovebankdata downloads the location and timestamp columns of a study stored in Movebank Details Note getmovebankdata(study, animalname, login,...) study animalname login character, full name of the study, as stored on Movebank character, single or a vector, with the name of the individuals as stored on Movebank a MovebankLogin, if empty you ll be asked to enter your username or password... passing on additional arguments getmovebankdata belongs to the Movebank browsing functions and returns a Move object from studies with only on animal or MoveStack object for studies with multiple animals. If only a single or several particular animals of a study should be downloaded, a character vector can be provided for the animalname argument. Remember that you need an account at Movebank.org, see movebanklogin. See the browsemovebank vignette (move website download section) for more information about security and how to use Movebank from within R. It his possible to add the argument removeduplictedtimestamps and set it to true which allows you delete the duplicated timestamps, it is strongly advised not to use this option because there is no control over which records are removed. Its better to edit the records in movebank. ## Not run: getmovebankdata(study="bci Ocelot", login=login) #returns a MoveStack object from the specified study getmovebankdata(study="bci Agouti", login=login) #returns a Move object (there is only one individual in this study) getmovebankdata(study=123413, animalname=c("mancha","yara"), login=login)
26 26 getmovebankid #returns a MoveStack with two individuals ## End(Not run) getmovebankid Study ID Returns the numeric study ID that corresponds to the character study NAME stored on Movebank getmovebankid(study,login) study login character, full name of the study, as stored on Movebank an object of the MovebankLogin-class, if empty you ll be asked to enter your username or password Details getmovebankid belongs to the Movebank browsing functions and returns the ID of a study as it is stored on Movebank.org. Note See the browsemovebank vignette (move website download section) for more information about security and how to use Movebank from within R. ## Not run: getmovebankid(study="bci Ocelot", login=login) ## End(Not run)
27 getmovebanksensors 27 getmovebanksensors Information about Movebank sensors getmovebanksensors returns information about sensors in a study. getmovebanksensors(study, login) study login a character string (study name) or the numeric study ID as it is stored on Movebank an object of the MovebankLogin-class, if empty you ll be asked to enter your username or password Details getmovebanksensors belongs to the Movebank browsing functions and returns either information about all sensor types that are available on Movebank (if the study argument is missing) or the sensor IDs corresponding to to the animal IDs in a specific study. Note See the browsemovebank vignette (move website download section) for more information about security and how to use Movebank from within R. ## Not run: getmovebanksensors(study=123413, login=login) ## End(Not run)
28 28 getmovebanksensorsattributes getmovebanksensorsattributes Available sensor attributes This function returns all attributes of the sensors of the requested study. getmovebanksensorsattributes(study, login) study login a character string (study name) or the numeric study ID as it is stored on Movebank an object of the MovebankLogin-class, if empty you ll be asked to enter your username or password Details getmovebanksensorattributes belongs to the Movebank browsing functions and returns the attributes of the sensors of a study, i.e. what is the sensor id and which data types are stored for this sensor (e.g. GPS sensors store longitude and latitude locations, and timestamps and have 673 as their ID on Movebank). Note See the browsemovebank vignette (move website download section) for more information about security and how to use Movebank from within R. ## Not run: getmovebanksensorsattributes(study=123413, login=login) ## End(Not run)
29 getmovebankstudies 29 getmovebankstudies All studies on Movebank Returns all studies available on Movebank getmovebankstudies(login) login an object of the MovebankLogin-class, if empty you ll be asked to enter your username or password Details getmovebankstudies belongs to the Movebank browsing functions and returns a data.frame of all studies available on Movebank. Note See the browsemovebank vignette (move website download section) for more information about security and how to use Movebank from within R. ## Not run: getmovebankstudies(login=login) ## End(Not run)
30 30 getvolumeud getmovebankstudy Returns study information getmovebankstudy belongs to the Movebank browsing functions and returns information about the requested study like the authors of that study, licence type, citation and more. getmovebankstudy(study, login) study login a character string (study name) or the numeric study ID as it is stored on Movebank an object of the MovebankLogin-class, if empty you ll be asked to enter your username or password Note See the browsemovebank vignette (move website download section) for more information about security and how to use Movebank from within R. ## Not run: getmovebankstudy(study="bci Agouti", login=login) ## End(Not run) getvolumeud Modify a UD raster Modifies the UD raster: that the cell values of the resulting raster are equal to the percentage of the smallest home range containing this cell. ## S4 method for signature.ud getvolumeud(x,...)
31 hrbootstrap 31 x one or several objects of the DBBMM-class or an DBBMMStack-class object... additional Raster or DBBMM objects See Also raster2contour load(system.file("extdata", "move.rdata", package="move"),.globalenv) getvolumeud(leroydbbmm) #for a single object getvolumeud(dbbmmstack) getvolumeud(leroydbbmm, leroydbbmm, leroydbbmm) #for several objects plot(getvolumeud(leroydbbmm)) hrbootstrap Calculates and plot the Minimum Convex Polygon for a track The hrbootstrap function calculates the 0, 25, 50, 75, 100% percentile of the Minimum Convex Polygon area by step wise (logarithmic) increasing the number of samples per calculation. For every step this calculation is repeated rep times with random coordinates from the track. For example it calculates 100 times the mcp area from 3 random locations and store the area. In the next step it calculates it from 5 random locations and so on. The returned graph shows the 5 percentiles of the area sizes. The dashed line indicates the real mcp area size of all locations. ## S4 method for signature SpatialPoints hrbootstrap(x, rep=100, plot=true, level=95, levelmax=100, unin= km, unout= m2,...) ## S4 method for signature.movetrackstack hrbootstrap(x, rep=100, plot=true, level=95, levelmax=100, unin="km", unout="m2",...)
32 32 hrbootstrap x Move, MoveStack, or SpatialPoints object rep numeric value for the number of repetitions per sample size, default is 100 plot level levelmax unin unout logical value that indicates whether the graph is plotted or not, default is TRUE the percentage of coordinates taken into account for the MCP area size calculation, default is 95 (95% of all coordinates are taken into account) the percentage of coordinates taken into account for the maximum MCP area size calculation (horizontal line in the plot) units form the input values (can be m or km ) units for the output values (can be m2, km2, or ha )... a Move or MoveStack object Details The hrbootstrap function passes values (samples of the track) on to the function mcp that is part of the adehbitathr package. See the help function of mcp for more information about input and output units. Value The values are returned in a data.frame with the units indicated by unout. Note Plots for MoveStacks are plotted one after another, and not side by side. m <- move(x=rnorm(70), y=rnorm(70), time=as.posixct(1:70, origin=" "), proj=crs("+proj=aeqd +ellps=wgs84")) hrbootstrap(m,rep=5, level=99, unout="m2", plot=true) #for a Move object mstack <- movestack(list(m,m)) hrbootstrap(mstack,rep=5, unout="m2", plot=false) #for a MoveStack object hrbootstrap(as(m,"spatialpoints"),rep=5, unout="m2", plot=true) #for a SpatialPoints object
33 iddata 33 iddata Functions for dealing with the iddata This function returns or replaces the iddata which is the data per individual. ## S4 replacement method for signature.movetrack,missing,missing,data.frame iddata(x,i,j) <- value ## S4 replacement method for signature.movetrack,any,any,any iddata(x,i,j) <- value ## S4 method for signature.movetrack iddata(x,i,j,...) x Move, MoveBurst or MoveStack object i Selection of the rows j Selection for the columns value Replacement values for the selected iddata... Other arguments to the data frame subseting such as drop=f Value Either the iddata data frame or the modified move object Bart Kranstauber load(system.file("extdata", "move.rdata", package="move"),.globalenv) iddata(leroy)
34 34 leroy interpolatetime Interpolate a trajectory This function allows to interpolate trajectories. It does this on the basis of a simple interpolation, depending on the spacemethod that is specified. interpolatetime(x, time, spacemethod=c( euclidean, greatcircle, rhumbline ),...) x time spacemethod an object of the Move-class either timestamps, or a number of locations or time interval that is used to generate a sequence of timestamps using the seq function a character that indicates the interpolation function to be used... other arguments currently not used Bart Kranstauber load(system.file("extdata", "move.rdata", package="move"),.globalenv) plot(interpolatetime(ricky[1:200,], 700, gr )) leroy GPS track data from a fisher This file includes spatial data from a fisher (Martes pennanti). It can be used to test the different functions from the move package. These location data were collected via a 105g GPS tracking collar (manufactured by E-obs GmbH) and programmed to record the animal s location every 15 minutes, continuously. The collar was deployed from 10 February 2009 through 04 March 2009 on an adult, resident, male fisher, in New York, USA (see References). The data usage is permitted for exploratory purposes. For other purposes please get in contact. Scott LaPoint
35 lines 35 References For more information, contact Scott LaPoint ## create a Move object from the data set data <- move(system.file("extdata","leroy.csv.gz",package="move")) plot(data) lines Plotting a track as lines Function for plotting a recorded track from a Move object as lines ## S4 method for signature.movetracksingle lines(x,...) ## S4 method for signature.movetrackstack lines(x,col=na,...) ## S4 method for signature.movetracksingleburst lines(x,col=na,...) x col Move object a vector of colors (same length as the number of individual for a stack or number of burst levels or segments for a burst object, or one)... arguments to be passed on, e.g. lty or lwd. See Also points plot load(system.file("extdata", "move.rdata", package="move"),.globalenv) plot(leroydbbmm) lines(sptransform(leroy, center=true), col=3) # add a track from a Move object to a plot
36 36 move move Create a Move object The move method creates Move or MoveStack object from Movebank or other (compressed) csv files, also zip files from the environmental annotation tool can be loaded. If you use your own data you need to set the projection method with the proj argument and specify in which column of your data the function finds locations and timestamps. ## S4 method for signature connection,missing,missing,missing,missing move(x, removeduplicatedtimestamps=f,...) ## S4 method for signature numeric,numeric,posixct,data.frame,crs move(x, y, time, data, proj, sensor= unknown,animal= unnamed,...) x y time data proj sensor Full path to the file location, OR a vector with x coordinates if non-movebank data are provided (e.g. data$x) vector of y coordinates if non-movebank data are provided column indicator for non-movebank data for the time stamps, with POSIXct conversion, i.e. as.posixct(data$timestamp, format="%y-%m-%d %H:%M:%S", tz="utc") Optional extra data associated with the relocation, if empty it is filled with the coordinates and timestamps projection method for non-movebank data; requires a valid CRS (see CRS-class) object, like CRS("+proj=longlat +ellps=wgs84"); default is NA sensor name, either single character or a vector with length of the number of coordinates animal animal ID or name, either single character or a vector with length of the number of coordinates removeduplicatedtimestamps It his possible to add the argument removeduplicatedtimestamps and set it to true which allows you delete the duplicated timestamps, it is strongly advised not to use this option because there is no control over which records are removed. Its better to edit the records in movebank.... Additional arguments Details The easiest way to import data is to download the study you are interested in from org. Set the file path as the x argument of the move function. The function detects whether there are single or multiple individuals in this file and automatically creates either a Move or MoveStack object. Another way is to read in your data using read.csv. Then the columns with the x and y coordinates, and the timestamp, as well as the whole data.frame of the imported data are given to the move function. Again the function detects whether to return a Move or a MoveStack object
37 Move-class 37 Note The imported data set is checked whether it is in a Movebank format. If this is not the case, you have to use the alternative import for non-movebank data (see above). Because the SpatialPoints- DataFrame function that creates the spatial data frame (sdf) of the Move object can not process NA location values, all rows with NA locations are omitted. A list of the omitted timestamps is stored in the timesmissedfixes slot of the Move object. If the data include double timestamps check your data for validity. You may want to consider a function to delete double timestamps, like: data <- data[which(!duplicated(data$timestamp)), ] Due to convention all names are turned into good names which means, without spaces ( Ricky T becomes Ricky.T ). ## create a move object from a Movebank csv file filepath<-system.file("extdata","leroy.csv.gz",package="move") data <- move(filepath) ## create a move object from non-movebank data file <- read.table(filepath, header=true, sep=",", dec=".") data <- move(x=file$location.long, y=file$location.lat, time=as.posixct(file$timestamp, format="%y-%m-%d %H:%M:%S", tz="utc"), data=file, proj=crs("+proj=longlat +ellps=wgs84"), animal="leroy") Move-class The Move class Slots The Move object contains at least time and coordinate information of an animal. It can contain further data that are individual to the animal, e.g. the sex or age. These data are stored in the iddata data.frame. If the object was created with the Movebank browsing functions it does also contain the study name, licence and citation information. iddata Object of class "data.frame": additional (one row) data; datecreation Object of class "numeric": time stamp when the file was downloaded; study Object of class "character": name of the study; citation Object of class "character": how to cite the study;
38 38 Move-class license Object of class "character": the license under which the data were published; timesmissedfixes Object of class "POSIXct": stores the timestamps of lines of the data set that were removed because they included NA locations bbox belongs to the SpatialPointsDataFrame coords coordinates of the track, belongs to the SpatialPointsDataFrame coords.nrs belongs to the SpatialPointsDataFrame data additional data of that object that is stored in the SpatialPointsDataFrame proj4string projection of the coordinates timestamps timestamps according to the coordinates Methods move signature(object = "Move"): creates a Move object getmovebankdata signature(object = "character"): creates a Move object by accessing Movebank sptransform signature(object = "Move"): transforms coordinates to a different projection method show signature(object = "Move"): prints a summary of all data stored in the Move object as.data.frame signature(object = "Move"): extracts the spatial data frame coordinates signature(object = "Move"): extracts the coordinates only from the Move object proj4string signature(object = "Move"): extracts the projection method from the Move object time.lag signature(object = "Move"): calculates time lags between coordinates n.locs signature(object = "Move"): calculates number of locations plot signature(object = "Move"): plots the track of the animal Note.MoveTrack and.movetracksingle are also exported for other people to program against
39 move2ade 39 move2ade Convert a Move or MoveStack object to adehabitat compatible object Convert a Move or MoveStack object to adehabitat compatible object. This is necessary because Move and MoveStack objects are not inherited by the object class that is typically used by the adehabitat package. Therefore, the move2ade function allows to use functions of the adehabitathr package with objects that were originally created with the Move package. ## S4 method for signature.movetracksingle move2ade(x) ## S4 method for signature.movetrackstack move2ade(x) x a Move or MoveStack object Value The returned object is from SpatialPointsDataFrame with the animal name (or unnamed ) stored in the data slot of the SpatialPointsDataFrame. load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) move2ade(ricky) #for a Move object move2ade(stack) #for a MoveStack object
40 40 movebanklogin movebanklogin Login into Movebank Creates an object that can be used with all Movebank browsing functions. ## S4 method for signature character,character movebanklogin(username,password) username password Your Movebank username Your Movebank password Details Use this function to login to Movebank. After you logged in, you can use the Movebank browsing functions from the move package. Note If you do not have the RCurl package installed movebanklogin will store your username and password in the object you assign it to. Furthermore, if you have no RCurl a http connection is used to retrieve data from Movebank instead of the more secure https protocol. ## Not run: ##first create the login object login <- movebanklogin{username="xxx", password="zzz"} ##and than use it with Movebank browsing functions getmovebankstudies(login) ## End(Not run)
41 MovebankLogin-class 41 MovebankLogin-class The MovebankLogin class Slots The MovebankLogin object is needed for every Movebank browsing function. Alternatively, one can also chose to enter the username and password every time one uses one of the browsing functions. username username as character password password as character rcurl logical value, whether RCurl is installed or not Methods movebanklogin signature(object = "character"): creates a MovebankLogin object MoveBurst MoveBurst class Slots The class MoveBurst, used for storing information about one individual with assignments of segments. Every segment between to locations has a class for example behavioural category. bbox... burstid... citation... coords... coords.nrs... data... datecreation... iddata... license...
42 42 movestack proj4string... sensor... study... timesmissedfixes... timestamps... movestack Creating a MoveStack Stacks a list of Move objects ## S4 method for signature list movestack(x) x a list of Move objects Details This function stacks single Move objects to a MoveStack object. Note All animal names are converted into good names which means, that spaces are replaced with points and duplicated names get an individual number added. For example: Leroy, Leroy -> adding number to duplicated names -> Leroy, Leroy.1 Ricky T -> replacing spaces -> Ricky.T load(system.file("extdata", "move.rdata", package="move"),.globalenv) l <- list(ricky[200:270,], leroy[200:270,]) movestack(l)
43 MoveStack-class 43 MoveStack-class The MoveStack class The MoveStack object is created within the brownian.bridge.dyn function from a Move object. It includes among others a raster object and probabilities. Slots citation Object of class "dbmvariance": includes the break.list and points of interest,...; bbox belongs to the SpatialPointsDataFrame coords the extension factor set by the user coords.nrs belongs to the SpatialPointsDataFrame data additional data of that object that is stored in the SpatialPointsDataFrame datecreation date and timestamp when this object was created iddata additional data to all individuals license the license terms of the used track material proj4string projection of all coordinates study name of the study timestamps timestamps according to the coordinates trackid a vector that indicates, which data, coordinates and timestamps belong to an individual Methods Methods defined with class "MoveStack" in the signature: [ signature(x="movestack"): select subset... getmovebankdata signature(object = "character"): creates a MoveStack object by accessing Movebank
44 44 n.locs n.indiv Extract the number of individuals of a Move or MoveStack object The n.indiv function returns the number of individuals from a Move or MovesStack object. ## S4 method for signature Move n.indiv(obj) ## S4 method for signature.movetrackstack n.indiv(obj) obj Move or MoveStack object Details The function returns 1 for objects of the class Move, and number of individuals for a movestack Bart Kranstauber load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) n.indiv(ricky) n.indiv(stack) n.locs Extract the number of locations of a Move or MoveStack object The n.locs method returns the number of locations of a track from a Move or MovesStack object. ## S4 method for signature SpatialPointsDataFrame n.locs(obj) ## S4 method for signature.movetrackstack n.locs(obj)
45 outerprobability 45 obj Move or MoveStack object load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) n.locs(ricky) #number of locations of Move object n.locs(stack) #number of locations of MoveStack object outerprobability Calculates the probabilities at the edges of a raster The outerprobability method calculates the summed probability of the cells at the border of a raster ## S4 method for signature RasterLayer outerprobability(raster,border,...) ## S4 method for signature DBBMMStack outerprobability(raster,border,...) Details Value raster border a RasterLayer or DBBMMStack object that has values for the raster cells numeric from 0 to 1; ratio of the number of columns at the border relative to the whole raster from which the probabilities should be summed up; default is 10% (0.1)... hand over information The function returns the summed probability at the border (e.g. the outer 10% of the cells) of a raster. This value can be used as an indicator whether the extent of the used raster is to small for the UD calculation and therefore too much probabilities are not calculated because they are outside the raster. numeric value for a single DBBMM object, or a list of numeric values for a DBBMMStack
46 46 plot load(system.file("extdata", "move.rdata", package="move"),.globalenv) #calculate the probabilities of 20% of the raster at the border from a DBBMM outerprobability(leroydbbmm, border=.2) #calculate the probabilities of 50% of the raster at the border from a DBBMMStack outerprobability(leroydbbmm, border=.5) plot Plotting track or raster Function for plotting a recorded track from a Move object or the probability values from a DBBMM object ## S4 method for signature.movetracksingle,missing plot(x, y,asp=1,...) ## S4 method for signature.movetrackstack,missing plot(x, y, type="p",asp=1,...) ## S4 method for signature.movetracksingleburst,missing plot(x, y, type="p",asp=1,...) x y type asp Details Move, MoveStack, MoveBurst or DBBMM object unused variable (listed for compatibility reasons) defines the type of the plot (e.g. l, p, b, o ) defines the aspect ratio of the plot generally 1 makes most / only sense since then x and y dimenstions are the same... arguments to be passed to methods, such as graphical parameters, and the logical add argument (see par) If x is a Move, MoveStack object a track is plotted with points and lines. The track can be added to another plot with the add = TRUE. If x is a MoveBurst object colored lines (according to the burstid) are plotted if the type is set to l. By default it is p which plots the real coordinates of the Move object as points. If x is a DBBMM object its raster object is plotted with the corresponding cell values. Unlike the image function, the cell size ratio keeps the same when the plot window is re-sized.
47 plotbursts 47 Note Have a look on the proportion of the graphic device when printing a track or raster. The plot function does not use equal sized units on both axes. See Also points lines load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) plot(leroy) # plot a Move object plot(leroy, type="o", col=3) plot(stack, col=c(3,5), lwd=3) # plot a MoveStack object plot(stack, type="l", col=c(3,5), lwd=3) plot(leroydbbmm) # plot the raster of a DBBMM object plot(dbbmmstack) # plot the raster of a DBBMMStack object plotbursts Plotting the centroids of a track The plotbursts function plots bursted Move objects (see?burst for how to create a bursted Move Object). For every single burst a circle is plotted at the center of every segment of a track. A segment represents consecutive coordinates that belong to a single burst. The properties of the plotted circles (size and color) can represent different information (see Details). ## S4 method for signature list plotbursts(object, add=true, sizefun=function(x) {as.numeric(diff(range(timestamps(x))), units ="mins")}, col = NA, breaks = 3,...) ## S4 method for signature.movetracksingleburst plotbursts(object, add=true, sizefun=function(x) { as.numeric(diff(range(timestamps(x))),
48 48 plotbursts units ="mins") }, col = NA, breaks = 3,...) object add sizefun a SpatialPointsDataFrame or a list of these that include coordinates and color, and size of the centroid indicators logical, if FALSE a new plot is generated, default is TRUE a function to calculate the size of the plotted circles (see details) breaks how many size classes should the circles have, default is 3 col a vector of color codes with the same length as the burstid. By default the standard colors from 1:8 are used. If there are more than 8 burstids the colors are recycled... additional plot attributes Details Circle colors correspond to burstids. The size of the circles is defined by a function. By default this function calculates the relative duration of a segment compared to the whole duration. The function can be adjusted to use a different measure using the sizefun argument. Note, it is possible to define break points by using the breaks argument. test <- move(system.file("extdata","leroy.csv.gz", package="move")) behav <- c(rep(1:4,each=200), rep(5, 118)) testb <- burst(test, f=behav) plot(coordinates(test),type="l") plotbursts(testb, breaks=3, add=true, pch=19) plotbursts(testb, breaks=5, add=false, pch=19) ##plotbursts(leroy_b, breaks=c(-inf,4000,6000, Inf), add=false, pch=19) #bursting track by realtive segment length plotbursts(object=testb, breaks=3, sizefun=function(x) sum(seglength(x)), pch=19, add=false)
49 points 49 points Plotting the points of a track Function for plotting a recorded track from a Move object as points. ## S4 method for signature.movetracksingle points(x,...) ## S4 method for signature.movetrackstack points(x,col=na,...) ## S4 method for signature.movetracksingleburst points(x,...) x Move or a DBBMM object col a vector of colors (same length as the number of objects)... arguments to be passed on, e.g. col for color, or add to add the points to a plot. See Also plot lines load(system.file("extdata", "move.rdata", package="move"),.globalenv) plot(leroydbbmm) points(sptransform(leroy, center=true), col=3) # add a track from a Move object to a plot
50 50 raster raster Extract raster from DBBMM Extracts the RasterLayer from a DBBMM and DBBMMStack object. ## S4 method for signature DBBMM raster(x) ## S4 method for signature DBBMMStack raster(x) x a DBBMM or DBBMMStack object Details The raster function extracts the raster object from a DBBMM or DBBMMStack object. Value An object from class RasterLayer is returned. load(system.file("extdata", "move.rdata", package="move"),.globalenv) raster(leroydbbmm) #returns the raster of a DBBMM object raster(dbbmmstack) # returns the raster of a DBBMMStack object plot(raster2contour(leroydbbmm, levels=c(.5,.9)), col=c(5,4)) # plot the raster lines of a DBBMM
51 raster2contour 51 raster2contour Convert raster to contour lines The function converts a ud(stack) object to a SpatialLinesDataFrame. ## S4 method for signature.ud raster2contour(x,...) ## S4 method for signature.udstack raster2contour(x,...) x a DBBMM or DBBMMStack object, that includesa raster object... additional arguments that are passed on from other functions, most important being level which determines the contour level Details The raster2contour function creates a SpatialLinesDataFrame from a given raster or DBBMM object. This allows to re-project the contours to different projections. See Also getvolumeud load(system.file("extdata", "move.rdata", package="move"),.globalenv) raster2contour(leroydbbmm) raster2contour(dbbmmstack) raster2contour(dbbmmstack, level=c(.5,.95))
52 52 searchmovebankstudies ricky GPS track data from a fisher This file includes spatial data from a fisher (Martes pennanti). It can be used to test the different functions from the move package. These location data were collected via a GPS tracking collar (manufactured by E-obs GmbH) and programmed to record locations depending on the animal s behaviour (up to a one location every two minutes). The collar was deployed on an adult, resident, male fisher, in New York, USA (see References). The data usage is permitted for exploratory purposes. For other purposes please get in contact. Scott LaPoint References For more information, contact Scott LaPoint <[email protected]> ## create a Move object from the data set data <- move(system.file("extdata","ricky.csv.gz",package="move")) plot(data) searchmovebankstudies Search for a study Searches for a study within Movebank searchmovebankstudies(x, login) x login a character string to search within the Movebank study names an object of the MovebankLogin-class, if empty you ll be asked to enter your username or password
53 seglength 53 Details The search function searches explicitly for the entered phrase. If you for example type Goose it will not show you studies including goose. So rather search for oose to find both. Value The function returns a character vector of study names. Note See the browsemovebank vignette (link) for more information about security and how to use Movebank from within R. ## Not run: searchmovebankstudies("mpio", login=login) #returns all studies that include this exact term ## End(Not run) seglength Calculates the segment length of a track Calculates the segment length of a track ## S4 method for signature SpatialPointsDataFrame seglength(x) x a SpatialPointsDataFrame, like a Move or MoveStack object Details The seglength function calculates the distances between point 1 and point 2, point 2 and point 3,....
54 54 sensor Value If the SpatialPointsDataFrame is projected in longitude latitude coordinates, the returned values are in meters. If not, the distances are calculated with the Pythagoras theorem and the distances are Euclidean distances in map units. load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) head(seglength(leroy)) #Move object in longlat projection head(seglength(stack)) #MoveStack object in aeqd projection sensor Extract the sensor of a Move or MoveStack object The sensor method returns or sets the sensor of a track from a Move or MovesStack object. ## S4 method for signature.movetrack sensor(this,...) ## S4 method for signature.unusedrecords sensor(this,...) this Move or MoveStack object... Curently not used Bart Kranstauber load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) sensor(leroy) #get the sensor from a Move object sensor(stack) #get the sensor from a MoveStack object
55 show 55 show Show a Move object Displays a summary of a Move object. ## S4 method for signature Move show(object) ## S4 method for signature MoveStack show(object) object a Move or MoveStack object Details The show function displays a summary of a Move object. This includes: animal ID species name study name number of track points receiver type projection method date of file creation the first three lines of the spatial data frame study citation data license number of omitted locations due to NAs in the dataset If the imported data are not from the Movebank database Animal, Species, npoints, Receiver, and Study are not shown.
56 56 speed speed speed information from a track or track stack This function returns a summary of speed related measurements of a Move or MoveStack object. ## S4 method for signature.movetracksingle speed(x) ## S4 method for signature.movetrackstack speed(x) ## S4 method for signature.movetracksingle speedsummary(x) ## S4 method for signature.movetrackstack speedsummary(x) x Move or MoveStack object Value The function returns the speed in m/s if the track is longlat else map units per second. In most cases the map units will also be meters. load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) speed(ricky) #speeds from a Move object speed(stack) #speeds from a MoveStack object speedsummary(leroy) # summary of speed measures of a Move object speedsummary(stack) # summary of speed measures of a MoveStack object
57 split 57 split Splitting a MoveStack Splitting MoveStack in a list of Move objects ## S4 method for signature MoveStack,missing split(x, f, drop=false,...) x f drop MoveStack or MoveBurst object not needed not needed... not needed Details A MoveStack is split into a list of Move objects by the track IDs of the given MoveStack. For stacking movestack can be used. Also a MoveBurst object can be split this will lead to seperate list elements for every burst, every location where the burst is switched will then be recycled. load(system.file("extdata", "move.rdata", package="move"),.globalenv) movestack <- movestack(list(leroy,ricky)) split(movestack) #splitting a MoveStack split(dbbmmstack) #splitting a DBBMMStack
58 58 sptransform sptransform Transform Move object projection method The sptransform function transforms the coordinates stored in the Move object from the default longlat coordinates to the default aeqd (Azimuthal Equi-distance) projection or a different projection. ## S4 method for signature Move,character sptransform(x,crsobj,center=false) ## S4 method for signature Move,missing sptransform(x,center=false,...) x Details CRSobj center a Move or a MoveStack object a CRS like character that describes the projection method to which the coordinates should be transformed, if missing "+proj=aequd" is used as default value logical, if TRUE the center of the coordinate system is the center of the track; FALSE is default... for additional arguments The sptransform function transforms the coordinates of a Move object by default from "+proj=longlat" to "+proj=aeqd". In this format the coordinates can be used by the brownian.bridge.dyn function. If center is TRUE the center of the coordinate system is set to the center of the track. ## create a Move object leroy <- move(system.file("extdata","leroy.csv.gz",package="move")) ## transform the Move object by default into "+aeqd" projection method ## and center the coordinate system sptransform(leroy, center=true) ## transform the Move object into another projection method, like mollweide sptransform(leroy, CRSobj="+proj=moll +ellps=wgs84")
59 subset-method 59 ##check projection method proj4string(leroy) subset-method Returns a single object from a MoveStack The subset function can be used to return a subset of a Move(Stack) object. ## S4 method for signature MoveStack,ANY,ANY x[i] ## S4 method for signature MoveStack,character,missing x[[i]] x i MoveStack object numeric, character or logical vector for individuals in a stack or a set of locations Details The double square bracket method is used for sub setting a stack to a single move object according to the individual name or return a stack of multiple individuals. Bart Kranstauber load(system.file("extdata", "move.rdata", package="move")) st <- movestack(list(leroy[50:100,],ricky=ricky[90:170,])) st[1] st[[ ricky ]] st[[2]] st[[c(true,false)]]
60 60 summary summary A summary of a DBBMM or DBBMMStack, Move or MoveStack object Summarizes the information of the raster from a DBBMM or DBBMMStack, or the data from a Move or MoveStack object ## S4 method for signature.ud summary(object) ## S4 method for signature.udstack summary(object) ## S4 method for signature.movetracksingle summary(object) ## S4 method for signature.movetrackstack summary(object) object a DBBMM/DBBMMStack, Move/MoveStack object Details Returns the projection, extent, and maximum and minimum values of the raster stored within the DBBMM or DBBMMStack object. If the object is a Move or MoveStack object the functions distance, time, speed, and angle is called and a list with the summarized values is returned. load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) summary(leroy) # summary of angle measures of a Move object summary(stack) # summary of angle measures of a MoveStack object summary(leroydbbmm) # summary of a DBBMM object summary(dbbmmstack) # summary of a DBBMMStack object
61 time.lag 61 time.lag Calculates the time lags between the coordinates The time.lag function calculates the time lags between locations. ## S4 method for signature.movetracksingle time.lag(x,...) ## S4 method for signature.movetrackstack time.lag(x,units,...) x units a Move or MoveStack object... further arguments The units used for the conversion, they need to be specified for a stack to ensure similair units between individuals Details This function is now replaced by timelag timelag Calculates the time lags between the coordinates The timelag function calculates the time lags between locations. ## S4 method for signature.movetracksingle timelag(x,...) ## S4 method for signature.movetrackstack timelag(x,units,...)
62 62 timestamps x units a Move or MoveStack object... further arguments The units used for the conversion, they need to be specified for a stack to ensure similair units between individuals Details Optionally the argument units can be passed on to ensure the time lag in a certain unit, this is especially useful in case a move stack is bursted. For more information on the units argument see the help of difftime. Value The function returns a numeric vector with the time lags. Bart Kranstauber load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) head(timelag(leroy)) #calculate timelags for a Move object head(timelag(stack)) #calculate timelags for a MoveStack object head(timelag(stack, units="hours")) #calculate timelags in different units timestamps Extract the timestamps of a Move or MoveStack object The timestamps method returns or sets the timestamps of a track from a Move or MovesStack object. ## S4 method for signature.movetracksingle timestamps(this) ## S4 method for signature.movetrack timestamps(this) ## S4 replacement method for signature.movetrack timestamps(this) <- value
63 timesummary 63 this value Move or MoveStack object timestamps from class POSIXct load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) timestamps(leroy) #get the timestamps from a Move object timestamps(stack) #get the timestamps from a MoveStack object timestamps(leroy) <- timestamps(leroy)+60 #change the timestamps and set it for a Move object timestamps(stack) <- timestamps(stack)+60 #change the timestamps and set it for a MoveStack object timesummary time information from a track or track stack This function returns a summary about time related measurements of a Move or MoveStack object. ## S4 method for signature.movetracksingle timesummary(x, units="hours") ## S4 method for signature.movetrackstack timesummary(x, units="hours") x Move or MoveStack object units defines the output uni, secs, mins, hours, days,...
64 64 trackid load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) timelag(leroy) timelag(stack) timesummary(ricky) # summary of time measures of a Move object timesummary(stack, units="hours") # summary of time measures of a MoveStack object trackid Returns trackid Obtain a factor returning the ids of individuals per location ## S4 method for signature MoveStack trackid(x) x a MoveStack object Value Returns a factor indicating to which individuals locations belong in a stack. Bart Kranstauber load(system.file("extdata", "move.rdata", package="move"),.globalenv) stack <- movestack(list(leroy,leroy)) trackid(stack)
65 turnanglegc 65 turnanglegc Calculates turning angles on great circle tracks This function returns the turn angels of a great circle track. ## S4 method for signature.movetracksingle turnanglegc(x) x Move object, in long lat projection Details On great circle tracks the bearing of arrival on a point is not the same as witch the previous point was left. This function returns the difference between these bearings between -180 and 180. The bearings are calculated using the functions bearing and finalbearing of the geosphere package. Value The function returns the turning angles in degrees. Bart Kranstauber load(system.file("extdata", "move.rdata", package="move"),.globalenv) turnanglegc(leroy) unusedrecords<- Creates unused records data A function that assigns locations as unused or returns the unusedrecords part of the object it could for example be used to remove locations test locations from a track.
66 66 unusedrecords<- ## S4 replacement method for signature.movetracksingle,logical unusedrecords(obj) <- value ## S4 replacement method for signature.movetrackstack,logical unusedrecords(obj) <- value ## S4 method for signature.unusedrecords unusedrecords(obj,...) ## S4 method for signature.unusedrecordsstack unusedrecords(obj,...) obj value a Move or MoveStack object A logical vector of the same length as the number of locations... Not used at the moment data <- move(system.file("extdata","leroy.csv.gz",package="move")) par(mfrow=2:1) plot(data, type= b ) unusedrecords(data)<-as.logical((1:n.locs(data))%%2) plot(data, type= b )
67 Index Topic classes.ud-class, 4 DBBMM-class, 16 DBBMMStack-class, 17 dynbgb-class, 21 Move-class, 37 MovebankLogin-class, 41 MoveStack-class, 43 Topic package move-package, 3.MoveGeneral-class (Move-class), 37.MoveTrack (Move-class), 37.MoveTrack-class (Move-class), 37.MoveTrackSingle (Move-class), 37.MoveTrackSingle-class (Move-class), 37.MoveTrackSingleBurst-class (MoveBurst), 41.UD (.UD-class), 4.UD-class, 4.UDStack-class (.UD-class), 4.unUsedRecords, 5.unUsedRecords-class (.unusedrecords), 5.unUsedRecordsStack-class (.unusedrecords), 5 [, 43 [,.MoveTrack,ANY,ANY-method (subset-method), 59 [,.MoveTrackSingleBurst,ANY,ANY-method (subset-method), 59 [,.MoveTrackStack,ANY,ANY-method (subset-method), 59 [,.unusedrecords,any,any-method (subset-method), 59 [,.unusedrecordsstack,any,any-method (subset-method), 59 [,MoveStack,ANY,ANY-class (MoveStack-class), 43 [,MoveStack,ANY,ANY-method (subset-method), 59 [,dbgbvariance,any,any-method (subset-method), 59 [,dbmvariance,any,any-method (subset-method), 59 [,dbmvarianceburst,any,any-method (subset-method), 59 [,dbmvariancestack,any,any-method (subset-method), 59 [[,.MoveTrackStack,character,missing-method (subset-method), 59 [[,.MoveTrackStack,logical,missing-method (subset-method), 59 [[,.MoveTrackStack,numeric,missing-method (subset-method), 59 [[,MoveStack,character,missing-method (subset-method), 59 angle, 6 angle,.movetracksingle-method (angle), 6 angle,.movetrackstack-method (angle), 6 anglesummary (angle), 6 anglesummary,.movetracksingle-method (angle), 6 anglesummary,.movetrackstack-method (angle), 6 as.data.frame, 7, 38 as.data.frame,move-method (as.data.frame), 7 brownian.bridge.dyn, 7, 10, 23, 58 brownian.bridge.dyn,.movetracksingle,missing,missing,numer (brownian.bridge.dyn), 7 brownian.bridge.dyn,.movetracksingle,rasterlayer,missing,n (brownian.bridge.dyn), 7 brownian.bridge.dyn,any,rasterlayer,missing,character-meth (brownian.bridge.dyn), 7 brownian.bridge.dyn,dbmvariance,rasterlayer,missing,numeri (brownian.bridge.dyn), 7 brownian.bridge.dyn,dbmvarianceburst,rasterlayer,missing,n (brownian.bridge.dyn), 7 67
68 68 INDEX brownian.bridge.dyn,movestack,rasterlayer,missing,numeric-method dbgbvariancetmp-class (brownian.bridge.dyn), 7 (dbgbvariance-class), 18 brownian.bridge.dyn,spatialpointsdataframe,missing,numeric,any-method dbmvariancetmp, 19 (brownian.bridge.dyn), 7 dbmvariancetmp-class (dbmvariancetmp), brownian.bridge.dyn,spatialpointsdataframe,numeric,missing,any-method 19 (brownian.bridge.dyn), 7 distance, 19 brownian.motion.variance.dyn, 10 distance,.movetracksingle-method brownian.motion.variance.dyn,.movetracksingle,numeric,numeric,numeric-method (distance), 19 (brownian.motion.variance.dyn), distance,.movetrackstack-method 10 (distance), 19 brownian.motion.variance.dyn,.movetracksingleburst,numeric,numeric,numeric-method distancesummary (distance), 19 (brownian.motion.variance.dyn), 10 burst, 11 burst,.movetracksingleburst,missing-method (burst), 11 burst,move,character-method (burst), 11 burst,move,factor-method (burst), 11 burst,move,numeric-method (burst), 11 burstid, 12 burstid,.movetracksingleburst-method (burstid), 12 burstid,moveburst-method (burstid), 12 citations, 12 citations,.movegeneral-method (citations), 12 citations<- (citations), 12 citations<-,.movegeneral-method (citations), 12 contour, 13, 17, 18 contour,.ud-method (contour), 13 contour,.udstack-method (contour), 13 coordinates, 14, 38 coordinates,move-method (coordinates), 14 corridor, 15 corridor,.movetracksingle-method (corridor), 15 corridor,.movetrackstack-method (corridor), 15 DBBMM, 51 DBBMM (DBBMM-class), 16 DBBMM-class, 13, 16, 31 DBBMMStack (DBBMMStack-class), 17 DBBMMStack-class, 13, 17, 31 dbgbvariance-class, 18 distancesummary,.movetracksingle-method (distance), 19 distancesummary,.movetrackstack-method (distance), 19 dynbgb, 20, 23 dynbgb,.movetracksingle,any,character-method (dynbgb), 20 dynbgb,.movetracksingle,missing,any-method (dynbgb), 20 dynbgb,.movetracksingle,numeric,any-method (dynbgb), 20 dynbgb,.movetracksingle,rasterlayer,numeric-method (dynbgb), 20 dynbgb,dbgbvariance,rasterlayer,numeric-method (dynbgb), 20 dynbgb-class, 20, 21 dynbgbvariance, 21 dynbgbvariance,.movetracksingle,numeric,numeric,numeric-me (dynbgbvariance), 21 equalproj, 22 equalproj,list-method (equalproj), 22 getmotionvariance, 22 getmotionvariance,dbbmm-method (getmotionvariance), 22 getmotionvariance,dbbmmburststack-method (getmotionvariance), 22 getmotionvariance,dbbmmstack-method (getmotionvariance), 22 getmotionvariance,dbgbvariancetmp-method (getmotionvariance), 22 getmotionvariance,dbmvariancestack-method (getmotionvariance), 22 getmotionvariance,dbmvariancetmp-method (getmotionvariance), 22 getmotionvariance,dynbgb-method (getmotionvariance), 22
69 INDEX 69 getmovebank, getmovebank,character,missing-method getmovebanksensorsattributes,character,movebanklogin-metho (getmovebank), 23 (getmovebanksensorsattributes), getmovebank,character,movebanklogin-method 28 (getmovebank), 23 getmovebanksensorsattributes,numeric,movebanklogin-method getmovebankanimals, 24 (getmovebanksensorsattributes), getmovebankanimals,any,missing-method 28 (getmovebankanimals), 24 getmovebankstudies, 29 getmovebankanimals,any,movebanklogin-method getmovebankstudies,missing-method (getmovebankanimals), 24 (getmovebankstudies), 29 getmovebankanimals,character,movebanklogin-method getmovebankstudies,movebanklogin-method (getmovebankanimals), 24 (getmovebankstudies), 29 getmovebankanimals,numeric,movebanklogin-method getmovebankstudy, 30 (getmovebankanimals), 24 getmovebankdata, 25, 38, 43 getmovebankdata,any,any,missing-method (getmovebankdata), 25 getmovebankdata,any,any,movebanklogin-method (getmovebankdata), 25 getmovebankdata,character,any,movebanklogin-method getmovebankstudy,any,missing-method (getmovebankstudy), 30 getmovebankstudy,any,movebanklogin-method (getmovebankstudy), 30 getmovebankstudy,character,movebanklogin-method (getmovebankstudy), 30 getmovebankstudy,numeric,movebanklogin-method (getmovebankdata), 25 (getmovebankstudy), 30 getmovebankdata,numeric,character,movebanklogin-method getvolumeud, 30, 51 (getmovebankdata), 25 getvolumeud,.ud-method (getvolumeud), 30 getmovebankdata,numeric,missing,movebanklogin-method getvolumeud,.udstack-method (getmovebankdata), 25 (getvolumeud), 30 getmovebankdata,numeric,numeric,movebanklogin-method hrbootstrap, 31 (getmovebankdata), 25 hrbootstrap,.movetrackstack-method getmovebankid, 26 (hrbootstrap), 31 getmovebankid,character,missing-method hrbootstrap,spatialpoints-method (getmovebankid), 26 (hrbootstrap), 31 getmovebankid,character,movebanklogin-method (getmovebankid), 26 iddata, 33 getmovebanksensors, 27 iddata,.movetrack-method (iddata), 33 getmovebanksensors,any,missing-method iddata<- (iddata), 33 (getmovebanksensors), 27 iddata<-,.movetrack,any,any,any-method getmovebanksensors,any,movebanklogin-method (iddata), 33 (getmovebanksensors), 27 iddata<-,.movetrack,missing,missing,data.frame-method getmovebanksensors,character,movebanklogin-method (iddata), 33 (getmovebanksensors), 27 image, 17, 18, 46 getmovebanksensors,missing,missing-method interpolatetime, 34 (getmovebanksensors), 27 interpolatetime,.movetracksingle,difftime-method getmovebanksensors,missing,movebanklogin-method (interpolatetime), 34 (getmovebanksensors), 27 interpolatetime,.movetracksingle,numeric-method getmovebanksensors,numeric,movebanklogin-method (interpolatetime), 34 (getmovebanksensors), 27 interpolatetime,.movetracksingle,posixct-method getmovebanksensorsattributes, 28 (interpolatetime), 34 getmovebanksensorsattributes,any,movebanklogin-method (getmovebanksensorsattributes), leroy, 34
70 70 INDEX lines, 35, 47, 49 lines,.movetracksingle-method (lines), 35 lines,.movetracksingleburst-method (lines), 35 lines,.movetrackstack-method (lines), 35 Move, 25, 57 move, 36, 36, 38 move,character,missing,missing,missing,missing-method n.indiv, 44 n.indiv,.movetrackstack-method (n.indiv), 44 n.indiv,move-method (n.indiv), 44 n.locs, 38, 44 n.locs,.movetrackstack-method (n.locs), 44 n.locs,spatialpointsdataframe-method (n.locs), 44 (move), 36 outerprobability, 17, 18, 45 move,connection,missing,missing,missing,missing-method outerprobability,dbbmmstack-method (move), 36 (outerprobability), 45 move,numeric,numeric,posixct,data.frame,character-method outerprobability,rasterlayer-method (move), 36 (outerprobability), 45 move,numeric,numeric,posixct,data.frame,crs-method par, 46 (move), 36 plot, 17, 18, 35, 38, 46, 49 move,numeric,numeric,posixct,data.frame,missing-method plot,.movetracksingle,missing-method (move), 36 (plot), 46 move,numeric,numeric,posixct,missing,any-method plot,.movetracksingleburst,missing-method (move), 36 (plot), 46 Move-class, 7, 8, 10, 34, 37 plot,.movetrackstack,missing-method move-package, 3 (plot), 46 move2ade, 39 plotbursts, 47 move2ade,.movetracksingle-method plotbursts,.movetracksingleburst-method (move2ade), 39 (plotbursts), 47 move2ade,.movetrackstack-method plotbursts,list-method (plotbursts), 47 (move2ade), 39 points, 35, 47, 49 MovebankLogin, 23, 25 points,.movetracksingle-method MovebankLogin (MovebankLogin-class), 41 (points), 49 movebanklogin, 25, 40, 41 points,.movetracksingleburst-method movebanklogin,character,character-method (points), 49 (movebanklogin), 40 points,.movetrackstack-method (points), movebanklogin,character,missing-method 49 (movebanklogin), 40 proj4string, 17, 18, 38 movebanklogin,missing,character-method (movebanklogin), 40 raster, 17, 18, 50 movebanklogin,missing,missing-method raster,dbbmm-method (raster), 50 (movebanklogin), 40 raster,dbbmmstack-method (raster), 50 MovebankLogin-class, 41 Raster-class, 5, MoveBurst, 41, 57 raster2contour, 31, 51 MoveBurst-class (MoveBurst), 41 raster2contour,.ud-method MoveStack, 25, 42 (raster2contour), 51 MoveStack (MoveStack-class), 43 raster2contour,.udstack-method movestack, 42, 57 (raster2contour), 51 movestack,character-method (movestack), read.csv, ricky, 52 movestack,list-method (movestack), 42 MoveStack-class, 43 searchmovebankstudies, 52
71 INDEX 71 searchmovebankstudies,character,missing-method sptransform,move,missing-method (searchmovebankstudies), 52 (sptransform), 58 searchmovebankstudies,character,movebanklogin-method subset-method, 59 (searchmovebankstudies), 52 summary, 60 seglength, 53 summary,.movetracksingle-method seglength,spatialpointsdataframe-method (summary), 60 (seglength), 53 summary,.movetrackstack-method sensor, 54 (summary), 60 sensor,.movetrack-method (sensor), 54 summary,.ud-method (summary), 60 sensor,.unusedrecords-method (sensor), summary,.udstack-method (summary), show, 38, 55 time.lag, 38, 61 show,.movegeneral-method (show), 55 time.lag,.movetracksingle-method show,.movetrack-method (show), 55 (time.lag), 61 show,.movetracksingle-method (show), 55 time.lag,.movetrackstack-method show,.movetracksingleburst-method (time.lag), 61 (show), 55 timelag, 61 show,.movetrackstack-method (show), 55 timelag,.movetracksingle-method (timelag), 61 show,.unusedrecords-method (show), 55 timelag,.movetrackstack-method show,dbmvariance-method (show), 55 (timelag), 61 show,dbmvariancetmp-method (show), 55 timestamps, 62 show,move-method (show), 55 timestamps,.movetrack-method show,moveburst-method (show), 55 (timestamps), 62 show,movestack-method (show), 55 timestamps,.movetracksingle-method SpatialLinesDataFrame, 51 (timestamps), 62 speed, 56 timestamps,.unusedrecords-method speed,.movetracksingle-method (speed), (timestamps), timestamps<- (timestamps), 62 speed,.movetrackstack-method (speed), 56 timestamps<-,.movetrack-method speedsummary (speed), 56 (timestamps), 62 speedsummary,.movetracksingle-method timesummary, 63 (speed), 56 timesummary,.movetracksingle-method speedsummary,.movetrackstack-method (timesummary), 63 (speed), 56 timesummary,.movetrackstack-method split, 57 (timesummary), 63 split,.movetracksingleburst,missing-method trackid, 64 (split), 57 trackid,.movetrackstack-method split,.movetrackstack,missing-method (trackid), 64 (split), 57 trackid,.unusedrecordsstack-method split,.udstack,missing-method (split), (trackid), trackid,movestack-method (trackid), 64 split,dbbmmstack,missing-method turnanglegc, 65 (split), 57 turnanglegc,.movetracksingle-method split,movestack,missing-method (split), (turnanglegc), sptransform, 38, 58 unusedrecords (unusedrecords<-), 65 sptransform,move,character-method unusedrecords,.unusedrecords-method (sptransform), 58 (unusedrecords<-), 65
72 72 INDEX unusedrecords,.unusedrecordsstack-method (unusedrecords<-), 65 unusedrecords<-, 65 unusedrecords<-,.movetracksingle,logical-method (unusedrecords<-), 65 unusedrecords<-,.movetrackstack,logical-method (unusedrecords<-), 65
Package tagcloud. R topics documented: July 3, 2015
Package tagcloud July 3, 2015 Type Package Title Tag Clouds Version 0.6 Date 2015-07-02 Author January Weiner Maintainer January Weiner Description Generating Tag and Word Clouds.
Package MBA. February 19, 2015. Index 7. Canopy LIDAR data
Version 0.0-8 Date 2014-4-28 Title Multilevel B-spline Approximation Package MBA February 19, 2015 Author Andrew O. Finley , Sudipto Banerjee Maintainer Andrew
Each function call carries out a single task associated with drawing the graph.
Chapter 3 Graphics with R 3.1 Low-Level Graphics R has extensive facilities for producing graphs. There are both low- and high-level graphics facilities. The low-level graphics facilities provide basic
Package DSsim. September 25, 2015
Package DSsim September 25, 2015 Depends graphics, splancs, mrds, mgcv, shapefiles, methods Suggests testthat, parallel Type Package Title Distance Sampling Simulations Version 1.0.4 Date 2015-09-25 LazyLoad
Comparison of Programs for Fixed Kernel Home Range Analysis
1 of 7 5/13/2007 10:16 PM Comparison of Programs for Fixed Kernel Home Range Analysis By Brian R. Mitchell Adjunct Assistant Professor Rubenstein School of Environment and Natural Resources University
STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc.
STATGRAPHICS Online Statistical Analysis and Data Visualization System Revised 6/21/2012 Copyright 2012 by StatPoint Technologies, Inc. All rights reserved. Table of Contents Introduction... 1 Chapter
Reading & Writing Spatial Data in R John Lewis. Some material used in these slides are taken from presentations by Roger Bivand and David Rossiter
Reading & Writing Spatial Data in R John Lewis Some material used in these slides are taken from presentations by Roger Bivand and David Rossiter Introduction Having described how spatial data may be represented
Package retrosheet. April 13, 2015
Type Package Package retrosheet April 13, 2015 Title Import Professional Baseball Data from 'Retrosheet' Version 1.0.2 Date 2015-03-17 Maintainer Richard Scriven A collection of tools
Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller
Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller Getting to know the data An important first step before performing any kind of statistical analysis is to familiarize
R Graphics Cookbook. Chang O'REILLY. Winston. Tokyo. Beijing Cambridge. Farnham Koln Sebastopol
R Graphics Cookbook Winston Chang Beijing Cambridge Farnham Koln Sebastopol O'REILLY Tokyo Table of Contents Preface ix 1. R Basics 1 1.1. Installing a Package 1 1.2. Loading a Package 2 1.3. Loading a
Classes and Methods for Spatial Data: the sp Package
Classes and Methods for Spatial Data: the sp Package Edzer Pebesma Roger S. Bivand Feb 2005 Contents 1 Introduction 2 2 Spatial data classes 2 3 Manipulating spatial objects 3 3.1 Standard methods..........................
Tutorial 8 Raster Data Analysis
Objectives Tutorial 8 Raster Data Analysis This tutorial is designed to introduce you to a basic set of raster-based analyses including: 1. Displaying Digital Elevation Model (DEM) 2. Slope calculations
Package uptimerobot. October 22, 2015
Type Package Version 1.0.0 Title Access the UptimeRobot Ping API Package uptimerobot October 22, 2015 Provide a set of wrappers to call all the endpoints of UptimeRobot API which includes various kind
Package neuralnet. February 20, 2015
Type Package Title Training of neural networks Version 1.32 Date 2012-09-19 Package neuralnet February 20, 2015 Author Stefan Fritsch, Frauke Guenther , following earlier work
Package missforest. February 20, 2015
Type Package Package missforest February 20, 2015 Title Nonparametric Missing Value Imputation using Random Forest Version 1.4 Date 2013-12-31 Author Daniel J. Stekhoven Maintainer
Package TSfame. February 15, 2013
Package TSfame February 15, 2013 Version 2012.8-1 Title TSdbi extensions for fame Description TSfame provides a fame interface for TSdbi. Comprehensive examples of all the TS* packages is provided in the
Package hoarder. June 30, 2015
Type Package Title Information Retrieval for Genetic Datasets Version 0.1 Date 2015-06-29 Author [aut, cre], Anu Sironen [aut] Package hoarder June 30, 2015 Maintainer Depends
Package bigrf. February 19, 2015
Version 0.1-11 Date 2014-05-16 Package bigrf February 19, 2015 Title Big Random Forests: Classification and Regression Forests for Large Data Sets Maintainer Aloysius Lim OS_type
Chemotaxis and Migration Tool 2.0
Chemotaxis and Migration Tool 2.0 Visualization and Data Analysis of Chemotaxis and Migration Processes Chemotaxis and Migration Tool 2.0 is a program for analyzing chemotaxis and migration data. Quick
Package cpm. July 28, 2015
Package cpm July 28, 2015 Title Sequential and Batch Change Detection Using Parametric and Nonparametric Methods Version 2.2 Date 2015-07-09 Depends R (>= 2.15.0), methods Author Gordon J. Ross Maintainer
Package survpresmooth
Package survpresmooth February 20, 2015 Type Package Title Presmoothed Estimation in Survival Analysis Version 1.1-8 Date 2013-08-30 Author Ignacio Lopez de Ullibarri and Maria Amalia Jacome Maintainer
Cluster Analysis using R
Cluster analysis or clustering is the task of assigning a set of objects into groups (called clusters) so that the objects in the same cluster are more similar (in some sense or another) to each other
Package SHELF. February 5, 2016
Type Package Package SHELF February 5, 2016 Title Tools to Support the Sheffield Elicitation Framework (SHELF) Version 1.1.0 Date 2016-01-29 Author Jeremy Oakley Maintainer Jeremy Oakley
GEOGRAPHIC INFORMATION SYSTEMS CERTIFICATION
GEOGRAPHIC INFORMATION SYSTEMS CERTIFICATION GIS Syllabus - Version 1.2 January 2007 Copyright AICA-CEPIS 2009 1 Version 1 January 2007 GIS Certification Programme 1. Target The GIS certification is aimed
Package MDM. February 19, 2015
Type Package Title Multinomial Diversity Model Version 1.3 Date 2013-06-28 Package MDM February 19, 2015 Author Glenn De'ath ; Code for mdm was adapted from multinom in the nnet package
MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC
MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL
2/24/2010 ClassApps.com
SelectSurvey.NET Training Manual This document is intended to be a simple visual guide for non technical users to help with basic survey creation, management and deployment. 2/24/2010 ClassApps.com Getting
Package treemap. February 15, 2013
Type Package Title Treemap visualization Version 1.1-1 Date 2012-07-10 Author Martijn Tennekes Package treemap February 15, 2013 Maintainer Martijn Tennekes A treemap is a space-filling
Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102
Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Interneer, Inc. Updated on 2/22/2012 Created by Erika Keresztyen Fahey 2 Workflow - A102 - Basic HelpDesk Ticketing System
Plotting: Customizing the Graph
Plotting: Customizing the Graph Data Plots: General Tips Making a Data Plot Active Within a graph layer, only one data plot can be active. A data plot must be set active before you can use the Data Selector
Package sjdbc. R topics documented: February 20, 2015
Package sjdbc February 20, 2015 Version 1.5.0-71 Title JDBC Driver Interface Author TIBCO Software Inc. Maintainer Stephen Kaluzny Provides a database-independent JDBC interface. License
TIBCO Spotfire Automation Services 6.5. User s Manual
TIBCO Spotfire Automation Services 6.5 User s Manual Revision date: 17 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO
Package HHG. July 14, 2015
Type Package Package HHG July 14, 2015 Title Heller-Heller-Gorfine Tests of Independence and Equality of Distributions Version 1.5.1 Date 2015-07-13 Author Barak Brill & Shachar Kaufman, based in part
Package plan. R topics documented: February 20, 2015
Package plan February 20, 2015 Version 0.4-2 Date 2013-09-29 Title Tools for project planning Author Maintainer Depends R (>= 0.99) Supports the creation of burndown
Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine
Blender Notes Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine The Blender Game Engine This week we will have an introduction to the Game Engine build
Package dsstatsclient
Maintainer Author Version 4.1.0 License GPL-3 Package dsstatsclient Title DataSHIELD client site stattistical functions August 20, 2015 DataSHIELD client site
KaleidaGraph Quick Start Guide
KaleidaGraph Quick Start Guide This document is a hands-on guide that walks you through the use of KaleidaGraph. You will probably want to print this guide and then start your exploration of the product.
Package png. February 20, 2015
Version 0.1-7 Title Read and write PNG images Package png February 20, 2015 Author Simon Urbanek Maintainer Simon Urbanek Depends R (>= 2.9.0)
Package empiricalfdr.deseq2
Type Package Package empiricalfdr.deseq2 May 27, 2015 Title Simulation-Based False Discovery Rate in RNA-Seq Version 1.0.3 Date 2015-05-26 Author Mikhail V. Matz Maintainer Mikhail V. Matz
Package dsmodellingclient
Package dsmodellingclient Maintainer Author Version 4.1.0 License GPL-3 August 20, 2015 Title DataSHIELD client site functions for statistical modelling DataSHIELD
Adobe Illustrator CS5 Part 1: Introduction to Illustrator
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Illustrator CS5 Part 1: Introduction to Illustrator Summer 2011, Version 1.0 Table of Contents Introduction...2 Downloading
SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS
SECTION 2-1: OVERVIEW Chapter 2 Describing, Exploring and Comparing Data 19 In this chapter, we will use the capabilities of Excel to help us look more carefully at sets of data. We can do this by re-organizing
Appendix 2.1 Tabular and Graphical Methods Using Excel
Appendix 2.1 Tabular and Graphical Methods Using Excel 1 Appendix 2.1 Tabular and Graphical Methods Using Excel The instructions in this section begin by describing the entry of data into an Excel spreadsheet.
How To Use Statgraphics Centurion Xvii (Version 17) On A Computer Or A Computer (For Free)
Statgraphics Centurion XVII (currently in beta test) is a major upgrade to Statpoint's flagship data analysis and visualization product. It contains 32 new statistical procedures and significant upgrades
Joomla! 2.5.x Training Manual
Joomla! 2.5.x Training Manual Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several tutorials
Package differ. R topics documented: February 19, 2015. Type Package
Type Package Package differ February 19, 2015 Title Difference Metrics for Comparing Pairs of Maps Version 0.0-2 Date 2014-11-28 Author Robert Gilmore Pontius Jr. , Alí Santacruz
Introduction to GIS (Basics, Data, Analysis) & Case Studies. 13 th May 2004. Content. What is GIS?
Introduction to GIS (Basics, Data, Analysis) & Case Studies 13 th May 2004 Content Introduction to GIS Data concepts Data input Analysis Applications selected examples What is GIS? Geographic Information
INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES
INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES A TUTORIAL FROM SPATIAL AND NUMERIC DATA SERVICES NICOLE SCHOLTZ AND GEOFF IVERSON Overview... 2 A. Get a Digital Elevation Model (DEM)... 3 B. Open ArcMap,
INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178
INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178 1) Navigate to the C:/temp folder 2) Make a directory using your initials. 3) Use your web browser to navigate to www.library.yale.edu/mapcoll/ and
9. Text & Documents. Visualizing and Searching Documents. Dr. Thorsten Büring, 20. Dezember 2007, Vorlesung Wintersemester 2007/08
9. Text & Documents Visualizing and Searching Documents Dr. Thorsten Büring, 20. Dezember 2007, Vorlesung Wintersemester 2007/08 Slide 1 / 37 Outline Characteristics of text data Detecting patterns SeeSoft
Package CoImp. February 19, 2015
Title Copula based imputation method Date 2014-03-01 Version 0.2-3 Package CoImp February 19, 2015 Author Francesca Marta Lilja Di Lascio, Simone Giannerini Depends R (>= 2.15.2), methods, copula Imports
An Introduction to Point Pattern Analysis using CrimeStat
Introduction An Introduction to Point Pattern Analysis using CrimeStat Luc Anselin Spatial Analysis Laboratory Department of Agricultural and Consumer Economics University of Illinois, Urbana-Champaign
Package xtal. December 29, 2015
Type Package Title Crystallization Toolset Version 1.15 Date 2015-12-28 Author Maintainer Qingan Sun Package xtal December 29, 2015 This is the tool set for crystallographer to design
TIBCO Spotfire Network Analytics 1.1. User s Manual
TIBCO Spotfire Network Analytics 1.1 User s Manual Revision date: 26 January 2009 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO
Create a folder on your network drive called DEM. This is where data for the first part of this lesson will be stored.
In this lesson you will create a Digital Elevation Model (DEM). A DEM is a gridded array of elevations. In its raw form it is an ASCII, or text, file. First, you will interpolate elevations on a topographic
Installing R and the psych package
Installing R and the psych package William Revelle Department of Psychology Northwestern University August 17, 2014 Contents 1 Overview of this and related documents 2 2 Install R and relevant packages
Business Objects Version 5 : Introduction
Business Objects Version 5 : Introduction Page 1 TABLE OF CONTENTS Introduction About Business Objects Changing Your Password Retrieving Pre-Defined Reports Formatting Your Report Using the Slice and Dice
Drawing a histogram using Excel
Drawing a histogram using Excel STEP 1: Examine the data to decide how many class intervals you need and what the class boundaries should be. (In an assignment you may be told what class boundaries to
Creating Interactive PDF Forms
Creating Interactive PDF Forms Using Adobe Acrobat X Pro Information Technology Services Outreach and Distance Learning Technologies Copyright 2012 KSU Department of Information Technology Services This
Writer Guide. Chapter 15 Using Forms in Writer
Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2005 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the
Package bigdata. R topics documented: February 19, 2015
Type Package Title Big Data Analytics Version 0.1 Date 2011-02-12 Author Han Liu, Tuo Zhao Maintainer Han Liu Depends glmnet, Matrix, lattice, Package bigdata February 19, 2015 The
Package polynom. R topics documented: June 24, 2015. Version 1.3-8
Version 1.3-8 Package polynom June 24, 2015 Title A Collection of Functions to Implement a Class for Univariate Polynomial Manipulations A collection of functions to implement a class for univariate polynomial
G563 Quantitative Paleontology. SQL databases. An introduction. Department of Geological Sciences Indiana University. (c) 2012, P.
SQL databases An introduction AMP: Apache, mysql, PHP This installations installs the Apache webserver, the PHP scripting language, and the mysql database on your computer: Apache: runs in the background
Microsoft Excel 2010 Charts and Graphs
Microsoft Excel 2010 Charts and Graphs Email: [email protected] Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Charts and Graphs 2.0 hours Topics include data groupings; creating
Appspace 5.X Reference Guide (Digital Signage) Updated on February 9, 2015
Appspace 5.X Reference Guide (Digital Signage) Updated on February 9, 2015 1 TABLE OF CONTENTS 2 What is Appspace For Digital Signage... 4 3 Access Appspace... 4 4 Best Practices and Notes... 4 5 Appspace
MEDIAplus administration interface
MEDIAplus administration interface 1. MEDIAplus administration interface... 5 2. Basics of MEDIAplus administration... 8 2.1. Domains and administrators... 8 2.2. Programmes, modules and topics... 10 2.3.
A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION
A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION Zeshen Wang ESRI 380 NewYork Street Redlands CA 92373 [email protected] ABSTRACT Automated area aggregation, which is widely needed for mapping both natural
CLC Server Command Line Tools USER MANUAL
CLC Server Command Line Tools USER MANUAL Manual for CLC Server Command Line Tools 2.5 Windows, Mac OS X and Linux September 4, 2015 This software is for research purposes only. QIAGEN Aarhus A/S Silkeborgvej
TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents:
Table of contents: Access Data for Analysis Data file types Format assumptions Data from Excel Information links Add multiple data tables Create & Interpret Visualizations Table Pie Chart Cross Table Treemap
GeoGebra. 10 lessons. Gerrit Stols
GeoGebra in 10 lessons Gerrit Stols Acknowledgements GeoGebra is dynamic mathematics open source (free) software for learning and teaching mathematics in schools. It was developed by Markus Hohenwarter
Files Used in this Tutorial
Generate Point Clouds Tutorial This tutorial shows how to generate point clouds from IKONOS satellite stereo imagery. You will view the point clouds in the ENVI LiDAR Viewer. The estimated time to complete
Package RCassandra. R topics documented: February 19, 2015. Version 0.1-3 Title R/Cassandra interface
Version 0.1-3 Title R/Cassandra interface Package RCassandra February 19, 2015 Author Simon Urbanek Maintainer Simon Urbanek This packages provides
InfiniteInsight 6.5 sp4
End User Documentation Document Version: 1.0 2013-11-19 CUSTOMER InfiniteInsight 6.5 sp4 Toolkit User Guide Table of Contents Table of Contents About this Document 3 Common Steps 4 Selecting a Data Set...
Iris Sample Data Set. Basic Visualization Techniques: Charts, Graphs and Maps. Summary Statistics. Frequency and Mode
Iris Sample Data Set Basic Visualization Techniques: Charts, Graphs and Maps CS598 Information Visualization Spring 2010 Many of the exploratory data techniques are illustrated with the Iris Plant data
Visualizing Data. Contents. 1 Visualizing Data. Anthony Tanbakuchi Department of Mathematics Pima Community College. Introductory Statistics Lectures
Introductory Statistics Lectures Visualizing Data Descriptive Statistics I Department of Mathematics Pima Community College Redistribution of this material is prohibited without written permission of the
The data between TC Monitor and remote devices is exchanged using HTTP protocol. Monitored devices operate either as server or client mode.
1. Introduction TC Monitor is easy to use Windows application for monitoring and control of some Teracom Ethernet (TCW) and GSM/GPRS (TCG) controllers. The supported devices are TCW122B-CM, TCW181B- CM,
Engineering Problem Solving and Excel. EGN 1006 Introduction to Engineering
Engineering Problem Solving and Excel EGN 1006 Introduction to Engineering Mathematical Solution Procedures Commonly Used in Engineering Analysis Data Analysis Techniques (Statistics) Curve Fitting techniques
Dreamweaver and Fireworks MX Integration Brian Hogan
Dreamweaver and Fireworks MX Integration Brian Hogan This tutorial will take you through the necessary steps to create a template-based web site using Macromedia Dreamweaver and Macromedia Fireworks. The
Package changepoint. R topics documented: November 9, 2015. Type Package Title Methods for Changepoint Detection Version 2.
Type Package Title Methods for Changepoint Detection Version 2.2 Date 2015-10-23 Package changepoint November 9, 2015 Maintainer Rebecca Killick Implements various mainstream and
Mobility Tool Guide for Beneficiaries of Leonardo da Vinci programme
EUROPEAN COMMISSION Directorate-General for Education and Culture Lifelong Learning: policies and programme Coordination of the "Lifelong learning" programme Mobility Tool Guide for Beneficiaries of Leonardo
Package fimport. February 19, 2015
Version 3000.82 Revision 5455 Date 2013-03-15 Package fimport February 19, 2015 Title Rmetrics - Economic and Financial Data Import Author Diethelm Wuertz and many others Depends R (>= 2.13.0), methods,
Home Range Estimation in R: the adehabitathr Package
Home Range Estimation in R: the adehabitathr Package Clement Calenge, Office national de la classe et de la faune sauvage Saint Benoist 78610 Auffargis France. Mar 2015 Contents 1 History of the package
Time Series Analysis AMS 316
Time Series Analysis AMS 316 Programming language and software environment for data manipulation, calculation and graphical display. Originally created by Ross Ihaka and Robert Gentleman at University
SESSION 8: GEOGRAPHIC INFORMATION SYSTEMS AND MAP PROJECTIONS
SESSION 8: GEOGRAPHIC INFORMATION SYSTEMS AND MAP PROJECTIONS KEY CONCEPTS: In this session we will look at: Geographic information systems and Map projections. Content that needs to be covered for examination
A Tutorial on dynamic networks. By Clement Levallois, Erasmus University Rotterdam
A Tutorial on dynamic networks By, Erasmus University Rotterdam V 1.0-2013 Bio notes Education in economics, management, history of science (Ph.D.) Since 2008, turned to digital methods for research. data
Data Mining: Exploring Data. Lecture Notes for Chapter 3. Introduction to Data Mining
Data Mining: Exploring Data Lecture Notes for Chapter 3 Introduction to Data Mining by Tan, Steinbach, Kumar Tan,Steinbach, Kumar Introduction to Data Mining 8/05/2005 1 What is data exploration? A preliminary
Portal Connector Fields and Widgets Technical Documentation
Portal Connector Fields and Widgets Technical Documentation 1 Form Fields 1.1 Content 1.1.1 CRM Form Configuration The CRM Form Configuration manages all the fields on the form and defines how the fields
Introduction of geospatial data visualization and geographically weighted reg
Introduction of geospatial data visualization and geographically weighted regression (GWR) Vanderbilt University August 16, 2012 Study Background Study Background Data Overview Algorithm (1) Information
Psychology 205: Research Methods in Psychology
Psychology 205: Research Methods in Psychology Using R to analyze the data for study 2 Department of Psychology Northwestern University Evanston, Illinois USA November, 2012 1 / 38 Outline 1 Getting ready
MMGD0203 Multimedia Design MMGD0203 MULTIMEDIA DESIGN. Chapter 3 Graphics and Animations
MMGD0203 MULTIMEDIA DESIGN Chapter 3 Graphics and Animations 1 Topics: Definition of Graphics Why use Graphics? Graphics Categories Graphics Qualities File Formats Types of Graphics Graphic File Size Introduction
Chapter 15 Using Forms in Writer
Writer Guide Chapter 15 Using Forms in Writer OpenOffice.org Copyright This document is Copyright 2005 2006 by its contributors as listed in the section titled Authors. You can distribute it and/or modify
SAP InfiniteInsight Explorer Analytical Data Management v7.0
End User Documentation Document Version: 1.0-2014-11 SAP InfiniteInsight Explorer Analytical Data Management v7.0 User Guide CUSTOMER Table of Contents 1 Welcome to this Guide... 3 1.1 What this Document
Introduction to the data.table package in R
Introduction to the data.table package in R Revised: September 18, 2015 (A later revision may be available on the homepage) Introduction This vignette is aimed at those who are already familiar with creating
Lesson 15 - Fill Cells Plugin
15.1 Lesson 15 - Fill Cells Plugin This lesson presents the functionalities of the Fill Cells plugin. Fill Cells plugin allows the calculation of attribute values of tables associated with cell type layers.
DataPA OpenAnalytics End User Training
DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics
MicroStrategy Analytics Express User Guide
MicroStrategy Analytics Express User Guide Analyzing Data with MicroStrategy Analytics Express Version: 4.0 Document Number: 09770040 CONTENTS 1. Getting Started with MicroStrategy Analytics Express Introduction...
MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy
MyOra 3.5 SQL Tool for Oracle User Guide Kris Murthy Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL Editor...
Package GEOquery. August 18, 2015
Type Package Package GEOquery August 18, 2015 Title Get data from NCBI Gene Expression Omnibus (GEO) Version 2.34.0 Date 2014-09-28 Author Maintainer BugReports
