From b02773b4e679988ca1347d4a18f415dac559e0d1 Mon Sep 17 00:00:00 2001 From: flatberg Date: Thu, 15 Mar 2007 10:38:52 +0000 Subject: [PATCH] pls loading plot now have correct name --- fluents/lib/blmplots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluents/lib/blmplots.py b/fluents/lib/blmplots.py index 58849dd..4f1a513 100644 --- a/fluents/lib/blmplots.py +++ b/fluents/lib/blmplots.py @@ -206,7 +206,7 @@ class PlsScorePlot(BlmScatterPlot): class PlsLoadingPlot(BlmScatterPlot): def __init__(self, model, absi=0, ordi=1): - title = "Pca loadings (%s)" %model._dataset['X'].get_name() + title = "Pls loadings (%s)" %model._dataset['X'].get_name() BlmScatterPlot.__init__(self, title, model, absi, ordi, part_name='P', color_by='w_tsq')