diff --git a/index.html b/index.html index febd554..d75c13f 100644 --- a/index.html +++ b/index.html @@ -80,7 +80,7 @@

InstallationGitHub with:

 install.packages("devtools")
-devtools::install_github("thibautjombart/geoGraph")
+devtools::install_github("EvolEcolGroup/geograph/")

How the package works diff --git a/pkgdown.yml b/pkgdown.yml index 6888575..b2a5a70 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -3,7 +3,7 @@ pkgdown: 2.0.7 pkgdown_sha: ~ articles: geograph: geograph.html -last_built: 2023-12-08T04:50Z +last_built: 2023-12-08T05:01Z urls: reference: https://evolecolgroup.github.io/geograph/reference article: https://evolecolgroup.github.io/geograph/articles diff --git a/reference/auxiliary.html b/reference/auxiliary.html index fb23344..c5c2eac 100644 --- a/reference/auxiliary.html +++ b/reference/auxiliary.html @@ -130,10 +130,6 @@

Details

  • rebuild: in development.

  • -
    -

    Author

    -

    Thibaut Jombart (t.jombart@imperial.ac.uk)

    -

    Examples

    diff --git a/reference/buffer.html b/reference/buffer.html index 451f273..9ff6316 100644 --- a/reference/buffer.html +++ b/reference/buffer.html @@ -115,10 +115,6 @@

    Details

    -
    -

    Author

    -

    Thibaut Jombart (t.jombart@imperial.ac.uk)

    -

    Examples

    diff --git a/reference/closestNode.html b/reference/closestNode.html index c0baf5b..7b496ef 100644 --- a/reference/closestNode.html +++ b/reference/closestNode.html @@ -149,10 +149,6 @@

    See also

    geo.add.edges and geo.remove.edges to interactively add or remove edges in a gGraph object.

    -
    -

    Author

    -

    Thibaut Jombart (t.jombart@imperial.ac.uk)

    -

    Examples

    diff --git a/reference/combineCosts.html b/reference/combineCosts.html index cd869ea..3f5264a 100644 --- a/reference/combineCosts.html +++ b/reference/combineCosts.html @@ -115,10 +115,10 @@

    Examples
    data("worldgraph.40k")
     # new graph with custom cost function
     exp.cost <- function(x1, x2, cost.coeff) {
    - exp(-abs(x1 - x2) * cost.coeff)
    +  exp(-abs(x1 - x2) * cost.coeff)
     }
     # create a set of node costs
    -worldgraph.40k@nodes.attr$meanProd<-runif(n=40962)
    +worldgraph.40k@nodes.attr$meanProd <- runif(n = 40962)
     new_costs_graph <-
       setCosts(
         worldgraph.40k,
    @@ -128,7 +128,7 @@ 

    Examples cost.coeff = 0.5 ) # combine costs from the original graph with the new costs -combine_costs_graph<- combineCosts(worldgraph.40k, new_costs_graph, method="sum") +combine_costs_graph <- combineCosts(worldgraph.40k, new_costs_graph, method = "sum")