Path: csiph.com!news.mixmin.net!weretis.net!feeder4.news.weretis.net!feeder5.news.weretis.net!news.solani.org!.POSTED!not-for-mail From: Karl Ratzsch Newsgroups: comp.graphics.apps.gnuplot Subject: Re: Ploting data with lines Date: Wed, 6 Dec 2017 14:31:48 +0100 Organization: solani.org Lines: 35 Message-ID: References: <1f1c9712-23a6-42ac-92ed-55c740ed674b@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: solani.org 1512567109 32476 eJwFwYEBgDAIA7CX6KQFzwGR/09YwkfQFy7Kudz5VU4YQ4kEX0+cgx2r7uqQNgcTzLHD2gsGURCf (6 Dec 2017 13:31:49 GMT) X-Complaints-To: abuse@news.solani.org NNTP-Posting-Date: Wed, 6 Dec 2017 13:31:49 +0000 (UTC) User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 X-NNTP-Posting-Host: eJwNwoERACEIA7CZFFvoOBXu9x/hvQTBxc5D8OB7VJjrKbdoJB092Ngis0wYVzW5UmogfhvREJo= Content-Language: de-DE-1901 Cancel-Lock: sha1:ofU7RzmNJ3U/iNeplCH4FyGYvJY= X-User-ID: eJwFwQkBACAIBLBKvIfEAYX+EdxcwbhhcJiv77U63lypGssTOpnEis5RvKayk/JIJkMizD8S9hBQ In-Reply-To: <1f1c9712-23a6-42ac-92ed-55c740ed674b@googlegroups.com> Xref: csiph.com comp.graphics.apps.gnuplot:3832 You don't need the commas between the individual "commentschars" (i.e. a comma then is also regarded as marking the start of a comment line), but that shouldn't break your plot. Your example data plots fine here (gp5.2pl2) too. What is the problem exactly? Could it be you just don't see the plot because gnuplot immediately "quit"s after doing it? ;-) Karl Am 06.12.2017 um 13:36 schrieb lukas.gerwers@googlemail.com: > hey! > > i am trying to plot a datafile with lines but it wont work and there is no error i could work with. > > The file contains some lines of text so i needed to use "set datafile commentschars". > > > Gnuplotcode > > reset > set term wxt font "Helvetica,8" > > set log y > set format y "$10^{%L}$" > set xlabel "Iterationsschritt" > set ylabel "Residuum der Kontinuität" > set key right center title > set datafile commentschars '(,r,i,W,D' > > plot 'Simplemed0.dat' using 1:2 every 10 with l ti ' (m$_{0}$)' >