Skip to content
Prev 255500 / 398506 Next

XYPlot Conditioning Variable in Specific, Non-Alphanumeric Order. -- Resending with corrected .txt file

On Sat, Mar 19, 2011 at 2:53 AM, Guy Jett <GJett at itsi.com> wrote:
You need to specify the order of the levels explicitly (to override
the default). Here is how to do it for one, you can similarly do the
other:
[1] "T" "U" "V" "Y" "Z" "A" "B" "C" "D" "E" "F" "G" "H"
+                     levels = c("T", "U", "V", "Y", "Z", "A",
+                                "B", "C", "D", "E", "F", "G", "H"))
[1] "T" "U" "V" "Y" "Z" "A" "B" "C" "D" "E" "F" "G" "H"

Once you make these changes, your original call should work as desired.

-Deepayan