I need to create a scatter chart similar to that in this question but using text labels instead of numerics. i.e. from that example, the nodes data column should contain text label (with spaces) and these need to be on the chart.
Then, I'd like to remove the colored marker, and change the color of the text based on label column in the data file.
Is this possible, please?

[Edit] Here's the code
\documentclass{article}
\usepackage{pgfplots,filecontents}
\pgfplotsset{compat=1.7}
\begin{filecontents*}{mydata.dat}
nodes x y label
1.0000 14.1209 7.0332 a
2.0000 0.6367 16.6166 a
3.0000 5.5385 11.7053 a
4.0000 0.9234 10.9945 a
5.0000 1.9426 18.3439 b
6.0000 16.4692 5.7168 b
7.0000 13.8966 15.1440 a
8.0000 6.3420 15.0746 a
9.0000 19.0044 7.6089 b
10.0000 0.6889 11.3564 b
\end{filecontents*}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
\begin{axis}[xlabel=metri,ylabel=metri]
\addplot[
visualization depends on={\thisrow{nodes}\as\myvalue},
scatter/classes={
a={mark=*,blue},
b={mark=*,red}
},
scatter, only marks,
scatter src=explicit symbolic,
nodes near coords*={\pgfmathprintnumber[int detect]\myvalue},]
table[x=x,y=y,meta=label]
{mydata.dat};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
