X-Received: by 10.36.179.70 with SMTP id z6mr8709030iti.36.1512568041469; Wed, 06 Dec 2017 05:47:21 -0800 (PST) X-Received: by 10.157.42.99 with SMTP id t90mr969573ota.5.1512568041289; Wed, 06 Dec 2017 05:47:21 -0800 (PST) Path: csiph.com!weretis.net!feeder6.news.weretis.net!feeder.usenetexpress.com!feeder-in1.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!i6no4304581itb.0!news-out.google.com!b73ni2976ita.0!nntp.google.com!i6no4304580itb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.graphics.apps.gnuplot Date: Wed, 6 Dec 2017 05:47:21 -0800 (PST) In-Reply-To: <1f1c9712-23a6-42ac-92ed-55c740ed674b@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=212.118.205.196; posting-account=AWDgYAoAAAD6sDj1Q9Md_y3Puex9Qg-p NNTP-Posting-Host: 212.118.205.196 References: <1f1c9712-23a6-42ac-92ed-55c740ed674b@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <2b2d9a1b-22c6-4e03-8180-76a7d18afb87@googlegroups.com> Subject: Re: Ploting data with lines From: lukas.gerwers@googlemail.com Injection-Date: Wed, 06 Dec 2017 13:47:21 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Lines: 64 Xref: csiph.com comp.graphics.apps.gnuplot:3833 Am Mittwoch, 6. Dezember 2017 13:36:51 UTC+1 schrieb lukas....@googlemail.c= om: > hey!=20 >=20 > i am trying to plot a datafile with lines but it wont work and there is n= o error i could work with. >=20 > The file contains some lines of text so i needed to use "set datafile com= mentschars". >=20 >=20 > Gnuplotcode >=20 > reset > set term wxt font "Helvetica,8" >=20 > set log y > set format y "$10^{%L}$" > set xlabel "Iterationsschritt"=20 > set ylabel "Residuum der Kontinuit=C3=A4t"=20 > set key right center title =20 > set datafile commentschars '(,r,i,W,D' >=20 > plot 'Simplemed0.dat' using 1:2 every 10 with l ti ' (m$_{0}$)' >=20 > quit >=20 >=20 > some lines out of the Data file > 1 1.0000e+00 1.4579e-02 1.7592e-02 2.0161e-02 1.2916e-04 3.734= 4e+02 2.6168e+03 9.4350e-10 1:06:38 1999 > (cx-gui-do cx-set-list-tree-selections "NavigationPane*List_Tree1" (list = )) > (cx-gui-do cx-set-list-tree-selections "NavigationPane*List_Tree1" (list = )) > 2 7.5065e-01 1.3359e-02 1.5772e-02 1.7526e-02 7.8608e-05 1.941= 4e-01 1.5643e-01 1.9792e-09 1:19:55 1998 > (cx-gui-do cx-set-list-tree-selections "NavigationPane*List_Tree1" (list = )) > (cx-gui-do cx-set-list-tree-selections "NavigationPane*List_Tree1" (list = )) > 3 1.0000e+00 1.4327e-02 1.5805e-02 1.7280e-02 5.8725e-05 1.195= 5e-01 1.0327e-01 2.4997e-09 1:17:13 1997 >=20 > reversed flow in 141 faces on pressure-outlet 7.=20 > (cx-gui-do cx-set-list-tree-selections "NavigationPane*List_Tree1" (list = )) > (cx-gui-do cx-set-list-tree-selections "NavigationPane*List_Tree1" (list = )) > 4 8.7695e-01 1.1833e-02 1.3297e-02 1.4437e-02 4.3447e-05 9.323= 7e-02 8.4142e-02 2.5991e-09 1:15:03 1996 >=20 >=20 >=20 >=20 >=20 >=20 > anyone got an idea? Oh wow i now know whats wrong and i feel kind of stuipid. There are some re= turns in my datafile, which is a little bit larger then few lines i copied = here. The Datafile got around 10k lines, is there a command in gnuplot to i= gnore returns in datafiles? Thanks!