Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphaPrime7 committed Jan 24, 2024
1 parent 3077909 commit 4526d89
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions .Rprofile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
options(scipen=999)

silentLoad <- function(p) {
cat(paste('Loading package:',p,'\n'))
suppressWarnings(suppressPackageStartupMessages(library(p, character.only = T)))
}

.First <- function() {
silentLoad('tibble')
}

.Last <- function() {
cat('Bye now.')
}

#.First.sys()
#old <- getOption("defaultPackages")
#options(defaultPackages = c(old, "tidyverse"))
6 changes: 3 additions & 3 deletions R/global_variables.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
globalVariables(
names = c(".",
utils::globalVariables(
names = c(".",
"x260_280_alert",
"x260_230_alert")
)
)

0 comments on commit 4526d89

Please sign in to comment.