How to visualize by assigning multiple columns as X-axis or Color

If you have data like below,

type Mon Tue Wed Thu Fri Sat Sun
a 10 20 30 40 50 60 30
b 20 30 40 50 60 30 30
c 30 30 20 30 40 50 60

and want to have those Day of Week (Mon, Tue, etc…) as X-Axis or Color, you can use ‘gather’ command to tidy the data first.

> type	day_of_week	value
> a	Mon 	10
> b	Mon 	20
> c	Mon 	30
> a	Tue  	20
> b	Tue  	30
> c	Tue  	30
> a	Wed 	30
> b	Wed 	40
> c	Wed 	20

Once the data is in this ‘tidy’ or ‘long’ format, then it’s easy to assign ‘day_of_week’ column to X-axis or Color. I’ve shared a quick sample here, you can download the EDF file and import into your Exploratory to reproduce step by step.