blob: 7b439886206df07fe22646460a393ed918199292 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
|