1. Список говнокодов пользователя shlapins

    Всего: 1

  2. Python / Говнокод #20042

    −49

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    # -*- coding: utf-8 -*-
    
    
    def get_custom_table_rows(df, rnames=None):
        if not rnames:
            rnames = []
    
        return df.iloc[
            [df.index.get_loc(
                (lambda rn: rn.encode('utf-8')
                    if isinstance(rn, unicode) else rn)(rn))
                for rn in rnames]]

    получить нужный ряд по ключу индекса в pandas

    shlapins, 19 Мая 2016

    Комментарии (9)