Wolfram 언어

클라우드 저장 및 조작

데이터 빈에 업로드하기

데이터 빈은 이제 벌크로 업로드된 데이터의 포함이 가능합니다.

데이터 빈을 생성합니다.

In[1]:=
Click for copyable input
contactsBin = CreateDatabin[<|"Name" -> "All Widget 1 Contacts", "Interpretation" -> <|"name" -> "String", "email" -> "EmailAddress"|>|>]
Out[1]=

데이터를 입력하고 업로드합니다.

In[2]:=
Click for copyable input
users = {<|"name" -> "Jon Doe", "email" -> "jondoe@example.com"|>, <|"name" -> "Jane Doe", "email" -> "janedoe@example.com"|>, <|"name" -> "Bob Sanders", "email" -> "bob@example.com"|>, <|"name" -> "Bradley Ashford", "email" -> "brash@example.com"|>, <|"name" -> "Alexandra Bull", "email" -> "lexi@example.com"|>, <|"name" -> "Woody Codard", "email" -> "wood@example.com"|>}; DatabinUpload[contactsBin, users]
Out[2]=

데이터가 추가되었습니다.

In[3]:=
Click for copyable input
Dataset[contactsBin]
Out[3]=

관련 예제

de en es fr ja pt-br ru zh