I am new to RM, but am very excited by its possibilities! I've read through lots of forum messages, documentation, and videos, but cannot seem to figure out how to do a something that seems fairly simple. Any help would be wonderful!
Here is a an example of my data
id1 | id2 | period | value |
1 | a | 2 | .11 |
2 | a | 3 | .23 |
3 | a | 4 | .12 |
4 | b | 3 | .14 |
5 | b | 4 | .11 |
6 | b | 5 | .19 |
7 | b | 6 | .18 |
I would like RM to partition the data according to the value in id2. In this simple example, it would split this data into two tables based on the values of 'a' and 'b' in id2:
id1 | id2 | period | value |
1 | a | 2 | .11 |
2 | a | 3 | .23 |
3 | a | 4 | .12 |
id1 | id2 | period | value |
4 | b | 3 | .14 |
5 | b | 4 | .11 |
6 | b | 5 | .19 |
7 | b | 6 | .18 |
Then I'd like to generate plots for these 2 tables (possibly separate plots, or just overlaid on the same plot) which graphs
value on the Y-axis and
period on the X-axis.
The original data will actually be partitioned into about 100 tables as a result, with varying numbers of records per table. Tables with more
periods will have more records, for example.
I have surmounted getting RM to read the data from SQL 2008R2, but can't seem to figure out how to get it to split the data up into separate example sets.
Thanks for any help!!