• <legend id='PeTOO'><style id='PeTOO'><dir id='PeTOO'><q id='PeTOO'></q></dir></style></legend>
    <i id='PeTOO'><tr id='PeTOO'><dt id='PeTOO'><q id='PeTOO'><span id='PeTOO'><b id='PeTOO'><form id='PeTOO'><ins id='PeTOO'></ins><ul id='PeTOO'></ul><sub id='PeTOO'></sub></form><legend id='PeTOO'></legend><bdo id='PeTOO'><pre id='PeTOO'><center id='PeTOO'></center></pre></bdo></b><th id='PeTOO'></th></span></q></dt></tr></i><div id='PeTOO'><tfoot id='PeTOO'></tfoot><dl id='PeTOO'><fieldset id='PeTOO'></fieldset></dl></div>
  • <tfoot id='PeTOO'></tfoot>

    • <bdo id='PeTOO'></bdo><ul id='PeTOO'></ul>

        <small id='PeTOO'></small><noframes id='PeTOO'>

      1. 如何从谷歌存储云读取数据到谷歌云数据实验室

        时间:2023-11-07

          • <bdo id='5nvHX'></bdo><ul id='5nvHX'></ul>
            <legend id='5nvHX'><style id='5nvHX'><dir id='5nvHX'><q id='5nvHX'></q></dir></style></legend>
              • <small id='5nvHX'></small><noframes id='5nvHX'>

                  <tfoot id='5nvHX'></tfoot>

                  <i id='5nvHX'><tr id='5nvHX'><dt id='5nvHX'><q id='5nvHX'><span id='5nvHX'><b id='5nvHX'><form id='5nvHX'><ins id='5nvHX'></ins><ul id='5nvHX'></ul><sub id='5nvHX'></sub></form><legend id='5nvHX'></legend><bdo id='5nvHX'><pre id='5nvHX'><center id='5nvHX'></center></pre></bdo></b><th id='5nvHX'></th></span></q></dt></tr></i><div id='5nvHX'><tfoot id='5nvHX'></tfoot><dl id='5nvHX'><fieldset id='5nvHX'></fieldset></dl></div>
                    <tbody id='5nvHX'></tbody>
                  本文介绍了如何从谷歌存储云读取数据到谷歌云数据实验室的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一些 CSV 文件存储在 Google 存储中,我想将它们读入 Google datalab.到目前为止,我不知道该怎么做.我发现 这个 并遵循第一个答案,但没有奏效并提出了

                  I have a few CSV files storing in Google storage and I want to read those into Google datalab. So far, I have no idea how to do it. I found this and followed the first answer but didn't work and raised

                    File "<ipython-input-1-5e9607fa3f65>", line 5
                      %%gcs read --object $data_csv --variable data
                      ^
                  SyntaxError: invalid syntax
                  

                  任何帮助将不胜感激.

                  推荐答案

                  如果减去 % 符号之一,它应该可以工作.最小的例子:

                  If you subtract one of the % symbols it should work. Minimal example:

                  import google.datalab.storage as storage
                  import pandas as pd
                  from io import BytesIO
                  
                  mybucket = storage.Bucket('BUCKET_NAME')
                  data_csv = mybucket.object('data.csv')
                  
                  uri = data_csv.uri
                  %gcs read --object $uri --variable data
                  
                  df = pd.read_csv(BytesIO(data))
                  df.head()
                  

                  这篇关于如何从谷歌存储云读取数据到谷歌云数据实验室的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:TypeError:没有编码的字符串参数 下一篇:如何提供 Google Cloud Storage 图片?

                  相关文章

                • <small id='lHZBO'></small><noframes id='lHZBO'>

                    <bdo id='lHZBO'></bdo><ul id='lHZBO'></ul>
                    <tfoot id='lHZBO'></tfoot><legend id='lHZBO'><style id='lHZBO'><dir id='lHZBO'><q id='lHZBO'></q></dir></style></legend>
                    <i id='lHZBO'><tr id='lHZBO'><dt id='lHZBO'><q id='lHZBO'><span id='lHZBO'><b id='lHZBO'><form id='lHZBO'><ins id='lHZBO'></ins><ul id='lHZBO'></ul><sub id='lHZBO'></sub></form><legend id='lHZBO'></legend><bdo id='lHZBO'><pre id='lHZBO'><center id='lHZBO'></center></pre></bdo></b><th id='lHZBO'></th></span></q></dt></tr></i><div id='lHZBO'><tfoot id='lHZBO'></tfoot><dl id='lHZBO'><fieldset id='lHZBO'></fieldset></dl></div>