Path: csiph.com!fu-berlin.de!uni-berlin.de!news.dfncis.de!not-for-mail From: =?UTF-8?Q?Hans-Bernhard_Br=c3=b6ker?= Newsgroups: comp.graphics.apps.gnuplot Subject: Re: Radiaton Characteristics using Gnuplot Date: Mon, 27 Jul 2020 20:58:31 +0200 Lines: 27 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: news.dfncis.de A85ixZK20uFsxXoLbkOugAZtztCF2IEGLXSBjLZ0cPvxhjAoOOcp5GcSX2 Cancel-Lock: sha1:tFr8pDQNZaDSM00FhpdNXWWCSwQ= User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 In-Reply-To: Content-Language: de-DE Xref: csiph.com comp.graphics.apps.gnuplot:4362 Am 27.07.2020 um 10:00 schrieb lennar...@gmail.com: > Hello, > > I would like to draw a mixed Polar an linear plot with gnuplot It doesn't work like that. As can be deduced from the say "set polar" is a global setting that is applied before you even issue a plot command, it really affects everything you plot from there on. So if you really need to mix polar with non-polar data in a single plot, then either one or the other has to be converted from coordinate system (r,thera) to (x,y), or vice versa: x = r*cos(theta) y = r*sin(theta) or r = sqrt(x**2+y**2) theta = atan2(x,y) > plot 'C:\Program Files\gnuplot\data.csv' notitle with lines Please don't do that. Your data files belong into your folders, not gnuplot's installation directory.