By executing my code (see below), I have a plot with grid, but I need grid to be frequently than now. How should I change it?
Thank you in advance!
Code: Select all
\documentclass[11pt,a4paper]{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[xlabel = {f, кГц.}, ylabel = K., grid=both]
\addplot[mark = none] coordinates {
(1.0,0.2647154501503825)
(1.5,0.3807477796923222)
(2.0,0.4812565113579688)
(2.5,0.565840103506494)
(3.0,0.635704895972674)
(3.5,0.6928238526553094)
(4.0,0.739340295895993)
(4.5,0.7772429561896744)
(5.0,0.8082347524695772)
(5.5,0.8337107197436225)
(6.0,0.8547860827588784)
(6.5,0.8723412026433603)
(7.0,0.8870673772786325)
(7.5,0.899507090248347)
(8.0,0.9100870187934802)
(8.5,0.9191441426044205)
(9.0,0.9269460013441607)
(9.5,0.9337062611352089)
(10.0,0.9395966305202977)
(10.5,0.9447559803887224)
(11.0,0.9492973390961651)
(11.5,0.9533132775786582)
(12.0,0.9568800742737721)
(12.5,0.9600609532007208)
(13.0,0.9629086155052814)
(13.5,0.9654672300178736)
(14.0,0.9677740075186188)
(14.5,0.9698604529611057)
(15.0,0.97175336720142)
(15.5,0.973475652802669)
(16.0,0.9750469657481947)
(16.5,0.9764842453006364)
(17.0,0.9778021469811882)
(17.5,0.9790133981197677)
(18.0,0.9801290912047418)
(18.5,0.9811589270172225)
(19.0,0.9821114170302495)
(19.5,0.9829940526092366)
(20.0,0.9838134470337896)
};
\end{axis}
\end{tikzpicture}
\end{document}