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)
| 590 | # |
| 591 | |
| 592 | def 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) |
nothing calls this directly
no test coverage detected