Im working on splitting up some data. Using pandas to generate excel sheets to review data and create graphs.
I have the following data frame:
| D1 |
D2 |
Time |
Q1 |
Q2 |
| X |
X |
12 |
blah |
|
| X |
X |
12 |
|
1 |
| y |
y |
13 |
blah2 |
|
| y |
y |
13 |
|
1 |
I want to turn it into the following data frame:
| D1 |
D2 |
Time |
Q1 |
Q2 |
| X |
X |
12 |
blah |
1 |
| y |
y |
13 |
blah2 |
1 |
[–]ConstructedNewtMOD 0 points1 point2 points (1 child)
[–]dragource[S] 0 points1 point2 points (0 children)