R/relationship.R

Defines functions relationship

Documented in relationship

#' This function shows the relatioship between some variables and accountbalance
#'
#'
#' @param x is a name of a variable (Age, Income, Expenditure)
#' @export
#' @rawNamespace import (plotly, except=c(filter,layout))
#' @examples
#' relationship(~Age)
#' relationship(~Income)
#' @return a plot
#'
#
#
relationship <-function(x) {
   plot_ly(accountbalance::accountbalance, x=(x), y = ~Accbl)
}
unimi-dse/2d3bd55d documentation built on Feb. 17, 2020, 4:16 a.m.