{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "from siuba.dply.verbs import Var, VarList, var_select\n", "from siuba import _\n", "import pandas as pd\n", "from pandas import DataFrame, Series" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## exclusion " ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "OrderedDict([('a', 'x'), ('b', None), ('c', None)])" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "v = VarList()\n", "colnames = ['a', 'b', 'c', 'd']\n", "var_select(\n", " colnames,\n", " v.x == v.a,\n", " -v.d,\n", " )" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## methods" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "OrderedDict([('home_phone', None), ('home_address', None), ('misc', None)])" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "colnames = [\"home_phone\", \"home_address\", \"other\", \"misc\"]\n", "var_select(\n", " colnames,\n", " v.startswith(\"home\"),\n", " v.misc\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## slicing" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "OrderedDict([('home_phone', None), ('home_address', None)])" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "colnames = [\"home_phone\", \"home_address\", \"other\", \"misc\"]\n", "var_select(\n", " colnames,\n", " v[v.home_phone:v.home_address]\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## misc" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Var('_.startswith('a')', negated = False, alias = None)" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "f = _.startswith(\"a\")\n", "f(v)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" }, "toc": { "base_numbering": 1, "nav_menu": {}, "number_sections": true, "sideBar": true, "skip_h1_title": false, "title_cell": "Table of Contents", "title_sidebar": "Contents", "toc_cell": false, "toc_position": {}, "toc_section_display": true, "toc_window_display": false } }, "nbformat": 4, "nbformat_minor": 4 }