Questions tagged [google-cloud-datalab]

An online tool for data analysis provided by Google as part of its Cloud Platform.

An easy to use interactive tool for large-scale data exploration, analysis, and visualization.

See more at https://cloud.google.com/datalab.

468 questions
0
votes
2 answers

scikit learn on google cloud platform through datalab or compute engine?

I am running a Django App inside GCP. My idea was to call a python script from "view.py" for some machine learning algorithm and then display the result on the page. But now I understand that running a machine learning library like Scikit-learn on…
0
votes
1 answer

What is the simplest approach to deploying a custom datalab vm on Google Cloud Compute Engine

This wiki was very helpful in providing a lot of detail about the process of deploying a custom datalab vm in the GCE. In particular, the 'Releasing A Build' page documented the following location for the most current Datalab Docker container: …
0
votes
1 answer

How do I use gcp package from outside of google datalabs?

I created a google compute instance with jupyter and I'd like to use all the nice things datalabs has. Is there a way to get the packages like gcp and the cellmagic like %%sql and %%storage. I found the packages gcloud and google-api-python-client…
ForeverConfused
  • 1,607
  • 3
  • 26
  • 41
0
votes
2 answers

Can Jupyter Console be used with Google Cloud Datalab?

Can Jupyter Console be used with Google Cloud Datalab as a replacement for the javascript frontend?
Dominykas Mostauskis
  • 7,797
  • 3
  • 48
  • 67
0
votes
1 answer

How do you logout/switch accounts?

Once you are logged in to your datalab instance there doesn't seem to be a way to logout/switch accounts, I tried going from the main "https://datalab.cloud.google.com/" page, but even if I select a different account... when it redirects me to the…
CasualT
  • 4,869
  • 1
  • 31
  • 53
0
votes
1 answer

How do we increase the CPUs available for doing SVMs in Google Cloud DataLabs?

We have a database of ~70,000 rows and ~7 features for which we are trying to do a SVM based prediction. The service ran for 4-5 hours before stopping (with no results.) How do we scale up or down the number of CPUs doing the calculation so this…
Praxiteles
  • 5,802
  • 9
  • 47
  • 78
0
votes
1 answer

Running sklearn 0.17 in Google Cloud Datalab

I am trying to use sklearn.feature_selection in Google Datalab however, Datalab has version 0.16.1 installed by default. I tried installing version 0.17 using %%bash pip install scikit-learn==0.17 This works well, however when I run a new block of…
Badger Cat
  • 946
  • 2
  • 16
  • 31
0
votes
1 answer

In datalab, Is it possible to pass data into a chart from python?

Trying to figure out if it is possible to reference python data as a source for creating a chart.
CasualT
  • 4,869
  • 1
  • 31
  • 53
0
votes
1 answer

Sharing the datalab notebooks

As per i read, we can share cloud datalab notebooks either by downloading .pynb file and sharing that way or sharing the html link.I have created a new folder under datalab_main and created new notebook .I have committed the file from the git…
Praneeth
  • 23
  • 4
0
votes
1 answer

Execute IPyWidgets in Google Cloud Datalab

For a project we try to expand the Google Cloud Datalab with IPyWidgets. When we try out IPyWidgets in jupyter notebook (not in google-cloud-datalab) locally, everything run as expected (i.e. we tried to show a Text field, which worked). When we try…
brecht-d-m
  • 371
  • 1
  • 5
  • 15
0
votes
2 answers

Why can't I install pandas-profiling on Cloud Datalab?

One of the main tools I like for initial data exploration: Error message: !pip install pandas-profiling Downloading/unpacking pandas-profiling Could not find a version that satisfies the requirement pandas- profiling (from versions: 1.0.0a1,…
dartdog
  • 10,432
  • 21
  • 72
  • 121
0
votes
2 answers

A plea for a basic Notebook example getting data into and out of Google Cloud Datalab

I have started to try to use the Google Cloud datalab. While I understand it is a Beta product, I find the Doc's very frustrating, to say the least. The questions here and lack of responses as well as lack of new revisions or docs over the several…
0
votes
1 answer

How do I customize Google Cloud Datalab with extra Python modules?

I'd like to install zipline, the python module for financial backtesting, onto a Google Cloud Datalab instance. What's the best way to do this? (I tried to move the VM to user managed and SSH in, but it wouldn't let SSH in). (Also tried %%bash pip…
cjm2671
  • 18,348
  • 31
  • 102
  • 161
0
votes
1 answer

Notebook - Keyboard Shortcuts: Ctrl-K, Ctrl-J (Not Working)

I can't get CTRL+K and CTRL+J to move between cells in the notebook, when I'm in command mode. I'm running on a Mac OS X (Chrome browser). However, SHIFT+K and SHIFT+J works. I'm assuming it's an error with the documentation?
Mike Chirico
  • 3,381
  • 1
  • 23
  • 20
0
votes
1 answer

%%chart line graph in Datalab based on Bigquery data not rendering

I am running a query against our GAP data in Bigquery and I want to generate a chart from it. %%sql --module mobileGraph02 SELECT STRFTIME_UTC_USEC(UTC_USEC_TO_DAY((visitStartTime+36000)*1000000),'%Y/%m/%d') AS…