Group Abstract Group Abstract

Message Boards Message Boards

1
|
9.8K Views
|
7 Replies
|
2 Total Likes
View groups...
Share
Share this post:

[?] Add rows to Datasets?

Here goes a really elementary question. How can one add rows to a Dataset? I did not find the answer in the Documentation. Thanks

7 Replies
Posted 7 years ago

Do not see Dataset used anywhere in the attachment.

One issue, ListLogLogPlot[{q1, q2, q3}, ..., q2 and q3 are not defined. Also, it is better to avoid using % in Show[%, ...

POSTED BY: Rohit Namjoshi

Is there any who can tell me that how i can plot function from dataset if its variable values tak from the dataset.

Attachments:

Many thanks for the reference Henrik, indeed it is quite useful. All the best, Francisco

Just as a remark: I personally found this nicely done post by @John Shonder very inspiring for working with Dataset.

POSTED BY: Henrik Schachner

Thank you for the kind words. I want to learn how to use Mathematica to do everything I can do in R -- specifically, using the set of functions known as the Tidyverse. As I learn more I will post examples here.

POSTED BY: John Shonder
Posted 7 years ago
dataset = Dataset[<|"a" -> <|"x" -> 1, "y" -> 2|>, "b" -> <|"x" -> 3, "y" -> 4|>|>]

enter image description here

Append[dataset, <|"c" -> <|"x" -> 5, "y" -> 6|>|>]

enter image description here

POSTED BY: Rohit Namjoshi

Many thanks Rohit!

Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard