1つのデータビンをコピーして別のものを作る
既存のデータビンをコピーして新しいデータビンが作成できるようになった.
ビンを作成して,データを入れる.
In[1]:=
original =
CreateDatabin[<|
"Interpretation" -> <|"name" -> "String",
"email" -> "EmailAddress"|>|>];
DatabinUpload[original, {<|"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"|>}]
もとのデータビンをコピーして新しいデータビンを作成する.
In[2]:=
copy = CopyDatabin[original]
コピーしたものにデータを加える.
In[3]:=
DatabinAdd[copy, <|"name" -> "Ralph Waldo",
"email" -> "ralphw@example.com"|>]
DatabinAdd[copy, <|"name" -> "George Bernard",
"email" -> "georgeb@example.com"|>]
新しいデータビンには,もとのデータビンよりも項目が多く入っている.
In[4]:=
{original["EntryCount"], copy["EntryCount"]}
Out[4]=
In[5]:=
Complement[copy["Entries"], original["Entries"]]
Out[5]=