forked from PharmaForest/OncoPlotter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdescription.sas
More file actions
61 lines (49 loc) · 2.72 KB
/
Copy pathdescription.sas
File metadata and controls
61 lines (49 loc) · 2.72 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Type : Package
Package : OncoPlotter
Title : OncoPlotter--A SAS package to create figures commonly created in oncology studies
Version : 0.5.1
Author : [Yutaka Morioka],[Hiroki Yamanobe],[Ryo Nakaya]
Maintainer : [Yutaka Morioka],[Hiroki Yamanobe],[Ryo Nakaya]
License : MIT
Encoding : UTF8
Required : "Base SAS Software"
ReqPackages :
DESCRIPTION START:
## OncoPlotter
**A SAS package to create figures commonly used in oncology studies.**
OncoPlotter is a SAS macro package designed to easily generate key figures typically required in oncology clinical trials.
It supports Kaplan-Meier plots, Swimmer plots, Waterfall plots, Forest Plot and Spider Plot ready for both clinical study reports and publications.
The package also provides dummy datasets, allowing you to test each macro without preparing your own data.
This makes it especially useful for both beginners and advanced users in the oncology data field.
### Main Features
- **Kaplan-Meier Plot (`%kaplan_meier_plot`)**
- Creates survival curves by treatment group
- Displays censoring marks and number-at-risk below the plot
- Fully customizable axis labels, line colors, patterns, and plot titles
- Option to output generated SAS code via the `MFILE` option
- Includes internal dummy dataset (`dummy_adtte`) for quick testing
- **Swimmer Plot (`%swimmer_plot`)**
- Visualizes individual treatment durations, responses, ongoing treatments, and death
- Accepts ADSL and ADRS-format input datasets
- Color grouping by disease stage and response categories (e.g., CR, PR, SD, PD)
- Allows customization of plot size, subjects per page, and theme colors
- Supports predefined color styles like "OncoPlotter", "Kyoto", "Osaka", and more
- **Waterfall Plot (`%waterfall_plot`)**
- Displays percentage tumor size change for each subject as bars
- Bars are grouped and color-coded by response or treatment group
- Includes threshold lines for PR/PD classification
- Suitable for visualizing best overall response
- **Forest Plot (`%forest_plot`)**
- Create a forest plot using `PROC SGPLOT`.
- Draw point estimates and confidence intervals.
- Optional reference line and code generation (mprint dump) are supported.
- Includes internal dummy dataset (`dummy_forest_test`) for quick testing.
- **Spider Plot (`%spider_plot`)**
- Create a spider (subject profile) plot using `PROC SGPLOT`.
- Draw a series line (with markers) for each subject across the specified X variable and Y variable.
- Optional reference lines, custom axis labels/values, and code generation (mprint dump) are supported.
- Includes internal dummy dataset (`dummy_spider`) for quick testing.
### Usage
For more details, please visit https://github.com/PharmaForest/OncoPlotter
---
DESCRIPTION END: