CRAN Package Check Results for Package egonet

Last updated on 2019-03-08 08:07:53 CET.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 1.2 2.57 25.03 27.60 ERROR
r-devel-linux-x86_64-debian-gcc 1.2 0.26 1.46 1.72 ERROR
r-devel-linux-x86_64-fedora-clang 1.2 35.23 ERROR
r-devel-linux-x86_64-fedora-gcc 1.2 33.58 ERROR
r-devel-windows-ix86+x86_64 1.2 9.00 39.00 48.00 ERROR
r-patched-linux-x86_64 1.2 1.45 23.41 24.86 ERROR
r-patched-solaris-x86 1.2 50.30 ERROR
r-release-linux-x86_64 1.2 1.09 23.18 24.27 ERROR
r-release-windows-ix86+x86_64 1.2 3.00 50.00 53.00 ERROR
r-release-osx-x86_64 1.2 NOTE
r-oldrel-windows-ix86+x86_64 1.2 6.00 44.00 50.00 ERROR
r-oldrel-osx-x86_64 1.2 NOTE

Check Details

Version: 1.2
Check: DESCRIPTION meta-information
Result: NOTE
    Malformed Description field: should contain one or more complete sentences.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-ix86+x86_64, r-patched-linux-x86_64, r-patched-solaris-x86, r-release-linux-x86_64, r-release-windows-ix86+x86_64, r-release-osx-x86_64, r-oldrel-windows-ix86+x86_64, r-oldrel-osx-x86_64

Version: 1.2
Check: dependencies in R code
Result: NOTE
    'library' or 'require' call to 'sna' which was already attached by Depends.
     Please remove these calls from your code.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-ix86+x86_64, r-patched-linux-x86_64, r-patched-solaris-x86, r-release-linux-x86_64, r-release-windows-ix86+x86_64, r-release-osx-x86_64, r-oldrel-windows-ix86+x86_64, r-oldrel-osx-x86_64

Version: 1.2
Check: R code for possible problems
Result: NOTE
    read.egonet: no visible global function definition for 'read.csv'
    Undefined global functions or variables:
     read.csv
    Consider adding
     importFrom("utils", "read.csv")
    to your NAMESPACE file.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-ix86+x86_64, r-patched-linux-x86_64, r-patched-solaris-x86, r-release-linux-x86_64, r-release-windows-ix86+x86_64, r-release-osx-x86_64, r-oldrel-windows-ix86+x86_64, r-oldrel-osx-x86_64

Version: 1.2
Check: Rd line widths
Result: NOTE
    Rd file 'egonet-package.Rd':
     \examples lines wider than 100 characters:
     #Compute the \code{effsize} and \code{constraint} to the restricted network with "EGO" and nodes with "P" in the name (i.e. the relativ ... [TRUNCATED]
    
    Rd file 'index.egonet.Rd':
     \usage lines wider than 90 characters:
     index.egonet(dat, index = list("effsize", "constraint", "outdegree", "indegree", "efficiency", "hierarchy", "centralization", "gden", " ... [TRUNCATED]
     \examples lines wider than 100 characters:
     index.egonet(egomat,index=c("effsize","constraint","outdegree","indegree","efficiency", "centralization", "gden", "ego.gden", my.outdeg ... [TRUNCATED]
    
    These lines will be truncated in the PDF manual.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-patched-linux-x86_64, r-release-linux-x86_64

Version: 1.2
Check: examples
Result: ERROR
    Running examples in 'egonet-Ex.R' failed
    The error most likely occurred in:
    
    > base::assign(".ptime", proc.time(), pos = "CheckExEnv")
    > ### Name: egonet-package
    > ### Title: Tool for ego-centric measures in Social Network Analysis
    > ### Aliases: egonet-package egonet
    > ### Keywords: package
    >
    > ### ** Examples
    >
    > ## This is a list of file' names containing the ego-network
    > ff <- c("q1.csv","q2.csv","q3.csv")
    > files <- paste("http://www.egonet.associazionerospo.org/egonetdata/",ff,sep="")
    > names(files) <- ff
    >
    > ##if all your data are in a directory (eg. egonets, containing all files with the same extension),
    > ##you can easily get this list with the following commands
    > # ff <- dir("./egonets",pattern=".csv")
    > # files <- paste("./egonets/",ff,sep="")
    > # names(files) <- ff
    >
    >
    > # Here is a dataset with demographic informations and the names of files containing the ego-network
    > #we now want to add network indeces to this data.frame
    > data <- data.frame( gender=c("F","F","M"), age =(2:4)*10, filename=ff)
    > data
     gender age filename
    1 F 20 q1.csv
    2 F 30 q2.csv
    3 M 40 q3.csv
    >
    >
    > #import all the egonets
    > mats <- lapply(files,read.egonet)
    Error in `[.data.frame`(dat, , ego.name) : undefined columns selected
    Calls: lapply -> FUN -> [ -> [.data.frame -> [ -> [.data.frame
    Execution halted
Flavors: r-devel-linux-x86_64-debian-clang, r-patched-linux-x86_64, r-release-linux-x86_64

Version: 1.2
Check: whether package can be installed
Result: ERROR
    Installation failed.
Flavor: r-devel-linux-x86_64-debian-gcc

Version: 1.2
Check: examples
Result: ERROR
    Running examples in ‘egonet-Ex.R’ failed
    The error most likely occurred in:
    
    > ### Name: egonet-package
    > ### Title: Tool for ego-centric measures in Social Network Analysis
    > ### Aliases: egonet-package egonet
    > ### Keywords: package
    >
    > ### ** Examples
    >
    > ## This is a list of file' names containing the ego-network
    > ff <- c("q1.csv","q2.csv","q3.csv")
    > files <- paste("http://www.egonet.associazionerospo.org/egonetdata/",ff,sep="")
    > names(files) <- ff
    >
    > ##if all your data are in a directory (eg. egonets, containing all files with the same extension),
    > ##you can easily get this list with the following commands
    > # ff <- dir("./egonets",pattern=".csv")
    > # files <- paste("./egonets/",ff,sep="")
    > # names(files) <- ff
    >
    >
    > # Here is a dataset with demographic informations and the names of files containing the ego-network
    > #we now want to add network indeces to this data.frame
    > data <- data.frame( gender=c("F","F","M"), age =(2:4)*10, filename=ff)
    > data
     gender age filename
    1 F 20 q1.csv
    2 F 30 q2.csv
    3 M 40 q3.csv
    >
    >
    > #import all the egonets
    > mats <- lapply(files,read.egonet)
    Error in `[.data.frame`(dat, , ego.name) : undefined columns selected
    Calls: lapply -> FUN -> [ -> [.data.frame -> [ -> [.data.frame
    Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-ix86+x86_64, r-patched-solaris-x86, r-release-windows-ix86+x86_64, r-oldrel-windows-ix86+x86_64

Version: 1.2
Check: Rd files
Result: NOTE
    prepare_Rd: index.egonet.Rd:29-31: Dropping empty section \details
    prepare_Rd: index.egonet.Rd:32-38: Dropping empty section \value
    prepare_Rd: index.egonet.Rd:45-47: Dropping empty section \note
    prepare_Rd: index.egonet.Rd:39-41: Dropping empty section \references
    prepare_Rd: index.egonet.Rd:51-53: Dropping empty section \seealso
    prepare_Rd: read.egonet.Rd:27-29: Dropping empty section \note
Flavors: r-devel-windows-ix86+x86_64, r-release-windows-ix86+x86_64, r-oldrel-windows-ix86+x86_64