-
Notifications
You must be signed in to change notification settings - Fork 7
Multiple subplots
kojix2 edited this page Jun 15, 2020
·
15 revisions
require 'gr/plot'
x = [1,2,3,4,5,6,7,8,9,10]
y = x.shuffle
GR.barplot x, y, GR.subplot(2, 2, 1)
GR.stem x, y, GR.subplot(2, 2, 2)
GR.step x, y, GR.subplot(2, 2, 3)
GR.plot x, y, GR.subplot(2, 2, 4)
User's Guide
Simple, matlab-style API
- Plotting functions
- Plot attributes
- Multiple plots
- Multiple subplots
- Save Plot to a file
- Jupyter Notebook
GR Native functions
For developers