반응형
츄르사려고 코딩하는집사입니다.
1. colab 사이트의 왼쪽 Side Bar에서 <> 기호를 눌러 Mounting Google Drive in your VM을 코드 스니펫에서 검색하여 실행한다.
2. 아래의 코드를 돌리게 되면, Scatter Plot이 나오게 된다.
# load an example dataset
from vega_datasets import data
cars = data.cars()
import altair as alt
interval = alt.selection_interval()
base = alt.Chart(cars).mark_point().encode(
y='Miles_per_Gallon',
color=alt.condition(interval, 'Origin', alt.value('lightgray'))
).properties(
selection=interval
)
base.encode(x='Acceleration') | base.encode(x='Horsepower')
3. 아래의 코드를 돌리면, 구글 계정 접근을 위한 URL 제공이 되는데, 그 URL에 접속하여 로그인을 한 후 Oauth Code를 복사하여 넣어준다.
from google.colab import drive
drive.mount('/gdrive')
4. 구글 드라이브를 mount 했으면, google Drive가 열릴 경우에는 Hello Google Drive가 출력된다.
with open('/gdrive/My Drive/foo.txt', 'w') as f:
f.write('Hello Google Drive!')
!cat '/gdrive/My Drive/foo.txt'
반응형
'AI' 카테고리의 다른 글
코랩(Colab) Camera Capture (0) | 2021.07.02 |
---|---|
Visualization: Linked Brushing in Altair (0) | 2021.07.02 |
최근댓글