w_shaped

hyppo.tools.w_shaped(n, p, noise=False, low=- 1, high=1)

W-Shaped simulation.

W-Shaped (X,Y)Rp×R: U(1,1)p,

XU(1,1)pY=[((wTX)212)2+wTU500]+0.5κϵ
Parameters
  • n (int) -- The number of samples desired by the simulation (>= 5).

  • p (int) -- The number of dimensions desired by the simulation (>= 1).

  • noise (bool, default: False) -- Whether or not to include noise in the simulation.

  • low (float, default: -1) -- The lower limit of the uniform distribution simulated from.

  • high (float, default: 1) -- The upper limit of the uniform distribution simulated from.

Returns

x,y (ndarray of float) -- Simulated data matrices. x` and ``y have shapes (n, p) and (n, 1) where n is the number of samples and p is the number of dimensions.

Examples using hyppo.tools.w_shaped