CSVファイルから追加のティックを読み込む方法

CSVファイルから追加のティックを読み込む方法

次のようなドキュメントがあります。ここでは、 がextra x ticks手動で定義されています。ただし、実際のデータセットはこの例よりもはるかに大きいため、2 番目の列が 1 である CSV ファイルからティックを生成したいと考えています。 で何か試してみましたfrom tableが、うまくいきませんでした。これはまったく可能ですか? あるいは、データ内の正しい位置にマーカーを配置することも、許容できる解決策です。

\documentclass[]{article}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{filecontents}{data.csv}
value,isChange
-1.18349,1
1.29675,0
3.33266,0
3.22086,0
2.29151,0
2.46577,0
2.41649,0
2.11641,0
2.46207,0
2.41293,0
2.10606,1
4.77804,0
6.199,0
4.7366,0
3.56816,0
4.38747,0
4.15053,0
4.04366,0
4.27493,0
4.2202,0
4.67526,1
\end{filecontents}
\begin{document}
\begin{figure}[H]
    \begin{tikzpicture}
    \begin{axis}[
        width=1\textwidth,height=0.4\textheight,
        extra x ticks = {0, 10, 20},
        extra tick style={grid=major, major grid style={red,thick}},
    ]
    \addplot[] table[x expr=\coordindex, y index=0,col sep=comma] {data.csv};
    \end{axis}
    \end{tikzpicture}
\end{figure}
\end{document}

結果は次の画像になります。 ここに画像の説明を入力してください

答え1

|ライブラリのマークを使用した提案は次のとおりですplotmarks

\documentclass[]{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.12}
\usetikzlibrary{plotmarks}
\begin{filecontents}{data.csv}
value,isChange
-1.18349,1
1.29675,0
3.33266,0
3.22086,0
2.29151,0
2.46577,0
2.41649,0
2.11641,0
2.46207,0
2.41293,0
2.10606,1
4.77804,0
6.199,0
4.7366,0
3.56816,0
4.38747,0
4.15053,0
4.04366,0
4.27493,0
4.2202,0
4.67526,1
\end{filecontents}
\begin{document}
\begin{figure}[htb]
  \begin{tikzpicture}
    \begin{axis}[
        width=1\textwidth,height=0.4\textheight,
        set layers,mark layer=like plot,% markers clipped
        clip mode=individual
      ]
      \addplot[
          only marks,mark=|,
          mark options={red,thick,mark size=\pgfkeysvalueof{/pgfplots/height}}
        ]table[
          x expr=\coordindex,y index=0,col sep=comma,
          restrict expr to domain={\thisrow{isChange}}{1:1}
        ]{data.csv};
      \addplot[] table[x expr=\coordindex,y index=0,col sep=comma] {data.csv};
    \end{axis}
  \end{tikzpicture}
\end{figure}
\end{document}

ここに画像の説明を入力してください

関連情報