GRAFIK FUNGSI

Grafik Fungsi Dua Variabel

library(mosaicCalc)
## Loading required package: mosaic
## Registered S3 method overwritten by 'mosaic':
##   method                           from   
##   fortify.SpatialPolygonsDataFrame ggplot2
## 
## The 'mosaic' package masks several functions from core packages in order to add 
## additional features.  The original behavior of these functions should not be affected by this.
## 
## Attaching package: 'mosaic'
## The following objects are masked from 'package:dplyr':
## 
##     count, do, tally
## The following object is masked from 'package:Matrix':
## 
##     mean
## The following object is masked from 'package:ggplot2':
## 
##     stat
## The following objects are masked from 'package:stats':
## 
##     binom.test, cor, cor.test, cov, fivenum, IQR, median, prop.test,
##     quantile, sd, t.test, var
## The following objects are masked from 'package:base':
## 
##     max, mean, min, prod, range, sample, sum
## Loading required package: mosaicCore
## 
## Attaching package: 'mosaicCore'
## The following objects are masked from 'package:dplyr':
## 
##     count, tally
## 
## Attaching package: 'mosaicCalc'
## The following object is masked from 'package:stats':
## 
##     D

Contoh 1

slice_plot(
  70 - 40*exp(-.9*t) ~ t, 
  domain(t = 3:10) )

Contoh 2

           contour_plot(
  sin(4*pi*t/8)*exp(-.3*x) ~ t & x, 
  domain(t = range(3,20), x = range(1,10)))

Contoh 3

           interactive_plot(
   sin(4*pi*t/20)*exp(-.9*x) ~ t & x, 
   domain(t = 3:30, x = 1:20))