Retourner au contenu associé (journal : chaintools, outils unix avec syntaxe pythonique)
Posté par scls19fr (site web personnel) le 27 juin 2015 à 15:31. En réponse au journal chaintools, outils unix avec syntaxe pythonique. Évalué à 2. Dernière modification le 27 juin 2015 à 15:38.
Ce problème de composition a été soulevé par Pandas récemment
cf
http://pandas.pydata.org/pandas-docs/stable/basics.html#tablewise-function-application
# f, g, and h are functions taking and returning ``DataFrames`` >>> f(g(h(df), arg1=1), arg2=2, arg3=3)
with the equivalent
>>> (df.pipe(h) .pipe(g, arg1=1) .pipe(f, arg2=2, arg3=3) )
L'idée pourrait être reprise
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
[^] # Re: Autres outils
Posté par scls19fr (site web personnel) . En réponse au journal chaintools, outils unix avec syntaxe pythonique. Évalué à 2. Dernière modification le 27 juin 2015 à 15:38.
Ce problème de composition a été soulevé par Pandas récemment
cf
http://pandas.pydata.org/pandas-docs/stable/basics.html#tablewise-function-application
with the equivalent
L'idée pourrait être reprise