Skip to content

Commit 9245416

Browse files
committed
Remove unnecessary package imports
1 parent 886811d commit 9245416

File tree

5 files changed

+0
-18
lines changed

5 files changed

+0
-18
lines changed

R/Data_import.r

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
library(rlang)
2-
library(dplyr)
3-
library(tidyverse)
4-
51
#' @export
62
import_csv_data <- function(file_path) {
73
check_file_format(file_path)

R/Date_manager.r

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
library(rlang)
2-
library(dplyr)
3-
library(lubridate)
4-
51
#' @export
62
get_years_from_to <- function(data, config) {
73
year_col <- config$year_column_name

R/Filtering.r

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
library(rlang)
2-
library(dplyr)
3-
library(tidyverse)
4-
51
#' @export
62
filter_by_year <- function(data, year_column_name, from_year, to_year) {
73
check_year_filter(from_year, to_year)

R/Interactions_class.r

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
library(igraph)
2-
library(intergraph)
3-
library(statnet)
4-
51
#' @export
62
Interactions <- function(data,
73
author_delimiter = ";",

R/Report_class.r

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
library(rmarkdown)
2-
31
#' @export
42
Report <- function() {
53
report <- list(text = introduction(), fig_counter = 1)

0 commit comments

Comments
 (0)