README.md

`

advanceLab3g25.R

Travis build
status

The goal of advanceLab3g25.R is understand and learn how to create a package and publish on cran

Installation

You can install the released version of advanceLab3g25.R from CRAN with:

install.packages("advanceLab3g25.R")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("HammadBinAsif/lab03")

Example

Example code to run

library(advanceLab3g25.R)
 wiki_graph <-
 data.frame(v1=c(1,1,1,2,2,2,3,3,3,3,4,4,4,5,5,6,6,6),
            v2=c(2,3,6,1,3,4,1,2,4,6,2,3,5,4,6,1,3,5),
            w=c(7,9,14,7,10,15,9,10,11,2,15,11,6,6,9,14,2,9))
 dijkstra(wiki_graph, 1)
 dijkstra(wiki_graph, 3)

"# lab03"



HammadBinAsif/lab03 documentation built on Dec. 17, 2021, 10:28 p.m.