The datavisualization library in PGF/TikZ has many capabilities, but one thing I cannot find is how to remove ticks labels, keeping ticks themselves.
The scientific axes use such style (by default) for top and right axis.
For example, I would like to keep ticks, but remove labels in the following plot:
\documentclass[tikz]{standalone}
\usepackage{tikz}
\usetikzlibrary{datavisualization}
\begin{document}
\begin{tikzpicture}
\datavisualization
[scientific axes,visualize as line]
data {
x, y
0, 7
3, 6
7, 0
};
\end{tikzpicture}
\end{document}
https://www.overleaf.com/read/dztjfngnczmf
A similar question, but for pgfplots library Hide tick numbers in a TikZ/PGF axis environment.