Google Sheet Line Chart where series are in rows
up vote
0
down vote
favorite
I have a Google Sheet with data in the following format:
| Timestamp | Sensor | Value |
|------------------|--------|-------|
| 2018-11-14 0:00 | A | 100 |
| 2018-11-14 0:01 | A | 100 |
| 2018-11-14 0:02 | A | 105 |
| ... | A | ... |
| 2018-11-14 23:59 | A | 70 |
| 2018-11-15 0:00 | A | 85 |
| ... | A | ... |
| 2018-11-15 23:59 | A | 70 |
| 2018-11-14 0:00 | B | 42 |
| 2018-11-14 0:01 | B | 43 |
| 2018-11-14 0:02 | B | 44 |
| ... | B | ... |
| 2018-11-14 23:59 | B | 38 |
| 2018-11-15 0:00 | C | 41 |
| ... | C | ... |
| 2018-11-15 23:59 | C | 49 |
Each sensor has a row for each minute of the day with a corresponding value recorded at that minute. I would like to generate a line chart where there is a series for each sensor for each day.
- A 2018-11-14
- A 2018-11-15
- B 2018-11-14
- B 2018-11-15
- C 2018-11-14
- C 2018-11-15
So the x-axis should show the time of the day (without the date component) and the y-axis should show the value for that minute of the day.
How can I generate this chart (hopefully with minimal data manipulation).
google-sheets
migrated from superuser.com Nov 14 at 18:43
This question came from our site for computer enthusiasts and power users.
add a comment |
up vote
0
down vote
favorite
I have a Google Sheet with data in the following format:
| Timestamp | Sensor | Value |
|------------------|--------|-------|
| 2018-11-14 0:00 | A | 100 |
| 2018-11-14 0:01 | A | 100 |
| 2018-11-14 0:02 | A | 105 |
| ... | A | ... |
| 2018-11-14 23:59 | A | 70 |
| 2018-11-15 0:00 | A | 85 |
| ... | A | ... |
| 2018-11-15 23:59 | A | 70 |
| 2018-11-14 0:00 | B | 42 |
| 2018-11-14 0:01 | B | 43 |
| 2018-11-14 0:02 | B | 44 |
| ... | B | ... |
| 2018-11-14 23:59 | B | 38 |
| 2018-11-15 0:00 | C | 41 |
| ... | C | ... |
| 2018-11-15 23:59 | C | 49 |
Each sensor has a row for each minute of the day with a corresponding value recorded at that minute. I would like to generate a line chart where there is a series for each sensor for each day.
- A 2018-11-14
- A 2018-11-15
- B 2018-11-14
- B 2018-11-15
- C 2018-11-14
- C 2018-11-15
So the x-axis should show the time of the day (without the date component) and the y-axis should show the value for that minute of the day.
How can I generate this chart (hopefully with minimal data manipulation).
google-sheets
migrated from superuser.com Nov 14 at 18:43
This question came from our site for computer enthusiasts and power users.
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a Google Sheet with data in the following format:
| Timestamp | Sensor | Value |
|------------------|--------|-------|
| 2018-11-14 0:00 | A | 100 |
| 2018-11-14 0:01 | A | 100 |
| 2018-11-14 0:02 | A | 105 |
| ... | A | ... |
| 2018-11-14 23:59 | A | 70 |
| 2018-11-15 0:00 | A | 85 |
| ... | A | ... |
| 2018-11-15 23:59 | A | 70 |
| 2018-11-14 0:00 | B | 42 |
| 2018-11-14 0:01 | B | 43 |
| 2018-11-14 0:02 | B | 44 |
| ... | B | ... |
| 2018-11-14 23:59 | B | 38 |
| 2018-11-15 0:00 | C | 41 |
| ... | C | ... |
| 2018-11-15 23:59 | C | 49 |
Each sensor has a row for each minute of the day with a corresponding value recorded at that minute. I would like to generate a line chart where there is a series for each sensor for each day.
- A 2018-11-14
- A 2018-11-15
- B 2018-11-14
- B 2018-11-15
- C 2018-11-14
- C 2018-11-15
So the x-axis should show the time of the day (without the date component) and the y-axis should show the value for that minute of the day.
How can I generate this chart (hopefully with minimal data manipulation).
google-sheets
I have a Google Sheet with data in the following format:
| Timestamp | Sensor | Value |
|------------------|--------|-------|
| 2018-11-14 0:00 | A | 100 |
| 2018-11-14 0:01 | A | 100 |
| 2018-11-14 0:02 | A | 105 |
| ... | A | ... |
| 2018-11-14 23:59 | A | 70 |
| 2018-11-15 0:00 | A | 85 |
| ... | A | ... |
| 2018-11-15 23:59 | A | 70 |
| 2018-11-14 0:00 | B | 42 |
| 2018-11-14 0:01 | B | 43 |
| 2018-11-14 0:02 | B | 44 |
| ... | B | ... |
| 2018-11-14 23:59 | B | 38 |
| 2018-11-15 0:00 | C | 41 |
| ... | C | ... |
| 2018-11-15 23:59 | C | 49 |
Each sensor has a row for each minute of the day with a corresponding value recorded at that minute. I would like to generate a line chart where there is a series for each sensor for each day.
- A 2018-11-14
- A 2018-11-15
- B 2018-11-14
- B 2018-11-15
- C 2018-11-14
- C 2018-11-15
So the x-axis should show the time of the day (without the date component) and the y-axis should show the value for that minute of the day.
How can I generate this chart (hopefully with minimal data manipulation).
google-sheets
google-sheets
edited Nov 15 at 14:26
serenesat
8,48692040
8,48692040
asked Nov 14 at 18:25
Brylin Levin
migrated from superuser.com Nov 14 at 18:43
This question came from our site for computer enthusiasts and power users.
migrated from superuser.com Nov 14 at 18:43
This question came from our site for computer enthusiasts and power users.
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fwebapps.stackexchange.com%2fquestions%2f122213%2fgoogle-sheet-line-chart-where-series-are-in-rows%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown