Package move. July 7, 2015

Size: px
Start display at page:

Download "Package move. July 7, 2015"

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 <bart.kranstauber@uni-konstanz.de>, < marco.smolla@postgrad.manch 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)

Package tagcloud. R topics documented: July 3, 2015

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.

More information

Package MBA. February 19, 2015. Index 7. Canopy LIDAR data

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

More information

Each function call carries out a single task associated with drawing the graph.

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

More information

Package DSsim. September 25, 2015

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

More information

Comparison of Programs for Fixed Kernel Home Range Analysis

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

More information

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. 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

More information

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 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

More information

Package retrosheet. April 13, 2015

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

More information

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 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

More information

R Graphics Cookbook. Chang O'REILLY. Winston. Tokyo. Beijing Cambridge. Farnham Koln Sebastopol

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

More information

Classes and Methods for Spatial Data: the sp Package

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..........................

More information

Tutorial 8 Raster Data Analysis

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

More information

Package uptimerobot. October 22, 2015

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

More information

Package neuralnet. February 20, 2015

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

More information

Package missforest. February 20, 2015

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

More information

Package TSfame. February 15, 2013

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

More information

Package hoarder. June 30, 2015

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

More information

Package bigrf. February 19, 2015

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

More information

Chemotaxis and Migration Tool 2.0

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

More information

Package cpm. July 28, 2015

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

More information

Package gazepath. April 1, 2015

Package gazepath. April 1, 2015 Type Package Package gazepath April 1, 2015 Title Gazepath Transforms Eye-Tracking Data into Fixations and Saccades Version 1.0 Date 2015-03-03 Author Daan van Renswoude Maintainer Daan van Renswoude

More information

Package survpresmooth

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

More information

Cluster Analysis using R

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

More information

Package SHELF. February 5, 2016

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

More information

GEOGRAPHIC INFORMATION SYSTEMS CERTIFICATION

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

More information

Package MDM. February 19, 2015

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

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

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

More information

2/24/2010 ClassApps.com

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

More information

Package treemap. February 15, 2013

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

More information

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102

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

More information

Plotting: Customizing the Graph

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

More information

Package sjdbc. R topics documented: February 20, 2015

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

More information

TIBCO Spotfire Automation Services 6.5. User s Manual

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

More information

Package HHG. July 14, 2015

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

More information

Package plan. R topics documented: February 20, 2015

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

More information

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 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

More information

Package dsstatsclient

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

More information

KaleidaGraph Quick Start Guide

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.

More information

Package png. February 20, 2015

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)

More information

Package empiricalfdr.deseq2

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

More information

Package dsmodellingclient

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

More information

Adobe Illustrator CS5 Part 1: Introduction to Illustrator

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

More information

SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS

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

More information

Appendix 2.1 Tabular and Graphical Methods Using Excel

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.

More information

How To Use Statgraphics Centurion Xvii (Version 17) On A Computer Or A Computer (For Free)

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

More information

Joomla! 2.5.x Training Manual

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

More information

Package differ. R topics documented: February 19, 2015. Type Package

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

More information

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. 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

More information

INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES

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,

More information

INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178

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

More information

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 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

More information

Package CoImp. February 19, 2015

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

More information

An Introduction to Point Pattern Analysis using CrimeStat

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

More information

Package xtal. December 29, 2015

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

More information

TIBCO Spotfire Network Analytics 1.1. User s Manual

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

More information

Create a folder on your network drive called DEM. This is where data for the first part of this lesson will be stored.

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

More information

Installing R and the psych package

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

More information

Business Objects Version 5 : Introduction

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

More information

Drawing a histogram using Excel

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

More information

Creating Interactive PDF Forms

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

More information

Writer Guide. Chapter 15 Using Forms in Writer

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

More information

Package bigdata. R topics documented: February 19, 2015

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

More information

Package polynom. R topics documented: June 24, 2015. Version 1.3-8

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

More information

G563 Quantitative Paleontology. SQL databases. An introduction. Department of Geological Sciences Indiana University. (c) 2012, P.

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

More information

Microsoft Excel 2010 Charts and Graphs

Microsoft Excel 2010 Charts and Graphs Microsoft Excel 2010 Charts and Graphs Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Charts and Graphs 2.0 hours Topics include data groupings; creating

More information

Appspace 5.X Reference Guide (Digital Signage) Updated on February 9, 2015

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

More information

MEDIAplus administration interface

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.

More information

A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION

A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION Zeshen Wang ESRI 380 NewYork Street Redlands CA 92373 Zwang@esri.com ABSTRACT Automated area aggregation, which is widely needed for mapping both natural

More information

CLC Server Command Line Tools USER MANUAL

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

More information

TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents:

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

More information

GeoGebra. 10 lessons. Gerrit Stols

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

More information

Files Used in this Tutorial

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

More information

Package RCassandra. R topics documented: February 19, 2015. Version 0.1-3 Title R/Cassandra interface

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

More information

InfiniteInsight 6.5 sp4

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...

More information

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. 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

More information

Visualizing Data. Contents. 1 Visualizing Data. Anthony Tanbakuchi Department of Mathematics Pima Community College. Introductory Statistics Lectures

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

More information

Package VideoComparison

Package VideoComparison Version 0.15 Date 2015-07-24 Title Video Comparison Tool Package VideoComparison July 25, 2015 Author Silvia Espinosa, Joaquin Ordieres, Antonio Bello, Jose Maria Perez Maintainer Joaquin Ordieres

More information

The data between TC Monitor and remote devices is exchanged using HTTP protocol. Monitored devices operate either as server or client mode.

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,

More information

Engineering Problem Solving and Excel. EGN 1006 Introduction to Engineering

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

More information

Dreamweaver and Fireworks MX Integration Brian Hogan

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

More information

Package changepoint. R topics documented: November 9, 2015. Type Package Title Methods for Changepoint Detection Version 2.

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

More information

Mobility Tool Guide for Beneficiaries of Leonardo da Vinci programme

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

More information

Package fimport. February 19, 2015

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,

More information

Home Range Estimation in R: the adehabitathr Package

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

More information

Time Series Analysis AMS 316

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

More information

SESSION 8: GEOGRAPHIC INFORMATION SYSTEMS AND MAP PROJECTIONS

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

More information

A Tutorial on dynamic networks. By Clement Levallois, Erasmus University Rotterdam

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

More information

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 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

More information

Portal Connector Fields and Widgets Technical Documentation

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

More information

Introduction of geospatial data visualization and geographically weighted reg

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

More information

Psychology 205: Research Methods in Psychology

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

More information

MMGD0203 Multimedia Design MMGD0203 MULTIMEDIA DESIGN. Chapter 3 Graphics and Animations

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

More information

Chapter 15 Using Forms in Writer

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

More information

SAP InfiniteInsight Explorer Analytical Data Management v7.0

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

More information

Introduction to the data.table package in R

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

More information

Lesson 15 - Fill Cells Plugin

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.

More information

DataPA OpenAnalytics End User Training

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

More information

MicroStrategy Analytics Express User Guide

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...

More information

MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy

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...

More information

Package GEOquery. August 18, 2015

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

More information