• <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. 如何从谷歌存储云读取数据到谷歌云数据实验室

        How to read data from Google storage cloud to Google cloud datalab(如何从谷歌存储云读取数据到谷歌云数据实验室)

          • <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()
                  

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

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What happens when you compare 2 pandas Series(当你比较 2 个 pandas 系列时会发生什么)
                  Quickly find differences between two large text files(快速查找两个大文本文件之间的差异)
                  Python - Compare 2 files and output differences(Python - 比较 2 个文件和输出差异)
                  Why do comparisions between very large float values fail in python?(为什么在 python 中非常大的浮点值之间的比较会失败?)
                  Dictionary merge by updating but not overwriting if value exists(字典通过更新合并,但如果值存在则不覆盖)
                  Find entries of one text file in another file in python(在python中的另一个文件中查找一个文本文件的条目)
                    <tbody id='lHZBO'></tbody>

                • <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>