MCPcopy Create free account
hub / github.com/ScottfreeLLC/AlphaPy / vmunapply

Function vmunapply

alphapy/variables.py:592–612  ·  view source on GitHub ↗

r"""Remove a list of variables from multiple dataframes. Parameters ---------- group : alphapy.Group The input group. vs : list The list of variables to remove from the ``group``. Returns ------- None : None See Also -------- vmapply

(group, vs)

Source from the content-addressed store, hash-verified

590#
591
592def vmunapply(group, vs):
593 r"""Remove a list of variables from multiple dataframes.
594
595 Parameters
596 ----------
597 group : alphapy.Group
598 The input group.
599 vs : list
600 The list of variables to remove from the ``group``.
601
602 Returns
603 -------
604 None : None
605
606 See Also
607 --------
608 vmapply
609
610 """
611 for v in vs:
612 vunapply(group, v)

Callers

nothing calls this directly

Calls 1

vunapplyFunction · 0.85

Tested by

no test coverage detected