From bb7b465d5d1fe6e469e0e351cb372eae01fa9f0f Mon Sep 17 00:00:00 2001 From: frans Date: Fri, 10 Nov 2023 14:50:43 -0600 Subject: [PATCH] close #4 --- LICENSE | 2 +- LICENSE.md | 2 +- R/graph.R | 8 ++++---- README.md | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/LICENSE b/LICENSE index b48094c..2cce2d7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,2 +1,2 @@ YEAR: 2023 -COPYRIGHT HOLDER: Ixpantia SA +COPYRIGHT HOLDER: ixpantia SA diff --git a/LICENSE.md b/LICENSE.md index 0bfd090..91aa683 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ # MIT License -Copyright (c) 2023 Ixpantia SA +Copyright (c) 2023 ixpantia SA Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/R/graph.R b/R/graph.R index 5326535..d3d5dce 100644 --- a/R/graph.R +++ b/R/graph.R @@ -1,4 +1,4 @@ -#' @title Initialize a new graph +#' @title Initialize a New Graph #' #' @description #' Initializes a new graph with the given type. @@ -13,7 +13,7 @@ new_graph <- function(type) { ) } -#' @title As graph +#' @title As Graph #' #' @description #' Attempts to convert the object to a graph. @@ -27,7 +27,7 @@ as_graph <- function(x, type, ...) { UseMethod("as_graph") } -#' @title Data.frame as graph +#' @title Data.frame as Graph #' #' @description #' Converts a data.frame to a graph. @@ -146,7 +146,7 @@ as.list.AcyclicGraph <- function(x, ...) { x$as_list() } -#' @title Find roots +#' @title Find Roots #' #' @description #' Gets the roots of the graph. diff --git a/README.md b/README.md index a300ad4..253cf14 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OrbWeaver +# orbweaver A fast R library for working with Nodes in a graph. This library modifies graphs in place, similar to how [data.table](https://github.com/Rdatatable/data.table)