diff options
Diffstat (limited to 'docs/reference/draw_svg.chent.md')
| -rw-r--r-- | docs/reference/draw_svg.chent.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/docs/reference/draw_svg.chent.md b/docs/reference/draw_svg.chent.md new file mode 100644 index 0000000..7b43988 --- /dev/null +++ b/docs/reference/draw_svg.chent.md @@ -0,0 +1,37 @@ +# Draw SVG graph from a chent object using RDKit + +Draw SVG graph from a chent object using RDKit + +## Usage + +``` r +draw_svg.chent( + x, + width = 300, + height = 150, + filename = paste0(names(x$identifier), ".svg"), + subdir = "svg" +) +``` + +## Arguments + +- x: + + The chent object to be plotted + +- width: + + The desired width in pixels + +- height: + + The desired height in pixels + +- filename: + + The filename + +- subdir: + + The path to which the file should be written |
