Group: | Plot Manipulation |
See also: | show adddata getdata |
Function: | deletedata | |
Description: |
deletedata removes a dataset from already plotted ones.
|
Usage: | deletedata(di, l_num, c_num, da_num) | |
Input: | ||
di | Display | |
l_num | integer, 1 ... count of lines of di | |
c_num | integer, 1 ... count of columns of di | |
da_num | integer, 1 ... count of plotted datasets |
di=createdisplay(1, 1) x=1:100 y=sin(x/20)+uniform(100, 1)/10 show(di, 1, 1, x~y, x~knn(y, 10)) ; let have a look of the original data and the smoother deletedata(di, 1, 1, 2) ; remove the smoother
you see only one dataset.
Group: | Plot Manipulation |
See also: | show adddata getdata |