Group: | Plot Manipulation |
See also: | createdisplay |
Function: | setfractions | |
Description: |
changes proportions of parts of display
|
Usage: | setfractions(di, rows_props, cols_props) | |
Input: | ||
di | Display | |
rows_props | vector of values for vertical fractions, by #(1, 1, 1) all parts become the same height | |
cols_props | vector of values for horizontal fractions, by #(1, 1, 1) all parts become the same width |
di=createdisplay(2, 1) x=1:100 y=sin(x/20)+uniform(100, 1)/10 setfractions(di, 5 | 1, 1) show(di, 2, 1, "y=sin(x/20)+uniform(100, 1)/10") show(di, 1, 1, x~y)
you see a big window with a dataset and a small window with a string.
Group: | Plot Manipulation |
See also: | createdisplay |