2020-12-01から1ヶ月間の記事一覧
1. 依存関係のインストール sudo apt install dirmngr --install-recommends sudo apt install software-properties-common sudo apt install apt-transport-https 2. R のインストール sudo apt-key adv --keyserver keys.gnupg.net --recv-key 'E19F5F8712…
# Problem Cloud Run デプロイ時に次のようなエラーメッセージがコンソールに表示された. ERROR: (gcloud.beta.run.deploy) Revision 'hoge-fuga-service-jgah' is not ready and cannot serve traffic. ローカルで動作確認済み プロジェクト内のファイルに…
Code df.agg({'feature': ['mean', 'count', 'std', 'median', 'skew']}) Error Message SpecificationError: nested renamer is not supported Solution df.feature.agg(['mean', 'count', 'std', 'median', 'skew']) Ref. python - Solution for Specifica…