Nothing
      #*******************************************************************************
#
# ------------------ Tools for interfacing with LSD results ------------------
#
#   Written by Marcelo C. Pereira, University of Campinas
#
#   Copyright Marcelo C. Pereira
#   Distributed under the GNU General Public License
#
#*******************************************************************************
# ==== Get the original LSD variable name from a R column name ====
name.var.lsd <- function( r.name ) {
  if( is.null( r.name ) || length( r.name ) == 0 )
    return( NULL )
  if( ! is.character( r.name ) )
    stop( "Invalid R variable name(s) (r.name)" )
  lsd.name <- gsub( "\\..*$", "", r.name )
  lsd.name <- gsub( "^X_", "_", lsd.name )
  return( lsd.name )
}
# ==== Get a clean (R) variable name from R initial column name conversion ====
name.clean.lsd <- function( r.name ) {
  if( is.null( r.name ) || length( r.name ) == 0 )
    return( NULL )
  if( ! is.character( r.name ) )
    stop( "Invalid R variable name(s) (r.name)" )
  # adjust the time span format and remove trailing points
  clean.name <- gsub( "([0-9]+)\\.([0-9]+)\\.$", "\\1_\\2", r.name )
  clean.name <- gsub( "\\.\\.", "\\.", clean.name ) # replace double points by a single one
  return( clean.name )
}
# ==== Get a nice variable name from R initial column name conversion ====
name.nice.lsd <- function( r.name ) {
  if( is.null( r.name ) || length( r.name ) == 0 )
    return( NULL )
  if( ! is.character( r.name ) )
    stop( "Invalid R variable name(s) (r.name)" )
  # adjust the time span format and remove trailing points
  nice.name <- name.clean.lsd( r.name )
  # remove the 'X_' from R converted LSD variables starting with '_'
  nice.name <- gsub( "^X_|^_", "", nice.name )
  return( nice.name )
}
# ==== Check for missing or invalid column (variable) names ====
name.check.lsd <- function( file, col.names = NULL, check.names = TRUE ) {
  if( is.null( file ) || ! is.character( file ) || file == "" )
    stop( "Invalid results file name (file)" )
  if( ! is.null( col.names ) && ( length( col.names ) == 0 ||
                                  ! is.character( col.names ) ||
                                  any( col.names == "" ) ) )
    stop( "Invalid vector of variable names (col.names)" )
  if( is.null( check.names ) || ! is.logical( check.names ) )
    stop( "Invalid variable name check switch (check.names)" )
  # if no names, get from file
  if( is.null( col.names ) || ! is.character( col.names ) )
    col.names <- unique( make.names( info.names.lsd( file ) ) )
  else
    if( check.names )
      col.names <- name.in.set( col.names, info.names.lsd( file ) )
  return( name.var.lsd( col.names ) )
}
# ==== Get a valid/unique R variable name from the original LSD variable name ====
name.r.unique.lsd <- function( r.name ) {
  if( is.null( r.name ) || length( r.name ) == 0 )
    return( NULL )
  if( ! is.character( r.name ) )
    stop( "Invalid R variable name(s) (r.name)" )
  r.name <- sub( "\\..*$", "", r.name )
  r.name <- make.names( r.name )
  r.name <- unique( r.name )
  return( r.name )
}
# ==== Get a valid R variable name from the original LSD variable name ====
name.r <- function( r.name ) {
  r.name <- sub( "\\..*$", "", r.name )
  r.name <- make.names( r.name )
  return( r.name )
}
# ==== check is all given variable names are in the larger set ====
name.in.set <- function( sel.names, all.names ) {
  sel.names <- sel.names[ sel.names != "" ]
  sel.names <- unique( make.names( sel.names ) )
  all.names <- unique( sub( "\\..*$", "", make.names( all.names ) ) )
  for( i in 1 : length( sel.names ) )
    if( ! sub( "\\..*$", "", sel.names[ i ] ) %in% all.names )
      stop( paste( "Invalid column name selected (", sel.names[ i ], ")" ) )
  return( sel.names )
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.