I am trying to create a graph, where the labels for the tikz mark are not supposed to be numbers but strings, is there a(n easy) way to achieve this with tikz-datavisualisation?
Mockup of what I am going for:

Notice that the tikz are labeled with names. A further issue I don"t know how to fix is how to set marks ONLY where I supply data.
Exampledata I supply:
alpha 2 3
hotel 3 6
uniform 1 7
What I have so far:
\documentclass{article}
\usepackage{tikz}
\usepackage[margin=0cm,nohead]{geometry}
\usepackage[active,tightpage]{preview}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc} %input encoding
\usetikzlibrary{datavisualization}
\PreviewEnvironment{tikzpicture}
\begin{document}
\begin{tikzpicture}
\pgfdeclaredataformat{cacheConfigs}%
{}{}{#1 #2 #3}
{%
\pgfkeys{/data point/.cd, x=#1, y=#2, set=1} \pgfdatapoint
\pgfkeys{/data point/.cd, x=#1, y=#3, set=2} \pgfdatapoint
}{}{}
\datavisualization [scientific axes=clean, %y axis=grid,
style sheet=vary dashing,
visualize as line/.list={1,2}]
data[format=cacheConfigs] {
1 2 3
2 3 6
3 1 7
};
\end{tikzpicture}
\end{document}
