我点击了this链接来组织我的Firebase云功能,但并没有将我的所有代码都放在一个index.ts文件中。但是,当我运行该行时:
npm i -S glob, camelcase
在我的控制台中,它正在重新调整:
npm ERR! code EINVALIDTAGNAME
npm ERR! Invalid tag name "glob,": Tags may not have any characters that encodeURIComponent encodes.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/johndoe/.npm/_logs/2018-12-24T19_46_03_264Z-debug.log
答案 0 :(得分:1)
改为使用mask = test['a'].eq(4)
test.loc[mask] = test.loc[mask].fillna(test.loc[test['a'].eq(1).idxmax()])
test.loc[test['a'].eq(2)] *= 2
。逗号在这里不正确。 -S甚至都不是npm的文档标记(至少不在我的安装手册页上)。