I have a data frame with 5 column names and 10 row names. Values in this data frame consist of numbers between -1 to 1 and NAs.
Comp.1 Comp.2 Comp.3 Comp.4 Comp.5
Param1 NA NA NA NA NA
Param2 NA NA NA NA 0.9035769
Param3 0.9810636 NA NA NA NA
Param4 NA NA NA NA NA
Param5 NA NA NA NA NA
...
Param10 NA NA NA NA NA
I want to plot a graph, where I have all rows with row names at Y-Axis and columns with column names at X-Axis. Also, values denote points of certain color and the shade of this color determines value being closer to 1 or -1. NAs can be a cross mark or can be ignored.
Thanks in advance!

