From 1c1ea63a12b4339cd6b7a5d90f956c6b15f82b27 Mon Sep 17 00:00:00 2001 From: Thomas Poulsen Date: Sun, 24 Mar 2024 08:04:07 +0100 Subject: [PATCH] update doc --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e09aca..9d66ce8 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Quickly generate a graph from a DataFrame. -Use the template.csv in examples as template or rename the columns of your dataframe accordingly. +Use the template.csv in `examples` as template or rename the columns of your dataframe accordingly. ``` julia df1 = CSV.read("examples/01_departments.csv", DataFrame) @@ -16,3 +16,12 @@ plot_dot(d1, "/tmp/dept.png") ![dept](docs/src/img/01_dept.png) + +## Installation + +Not yet registered, so install from github and track main branch: + +``` julia +using Pkg +pkg"add https://github.com/tp2750/GraphVizDataFrame.jl#main" +```