|
From: steffen <kla...@on...> - 2011-01-05 10:10:17
|
Hi, I'm going to generate a plot of sunrise time versus date. The data file looks like 2010-12-02 7:53 2010-12-03 7:55 2010-12-06 7:59 2010-12-07 8:00 ... So, in the first column is the date (shall be x-axis), in the second the time (y-axis). To read the date correctly I did: set xdata time set timefmt "%Y-%m-%d" But the time (y-axis) is not read correctly, just integer hours. How to set up the format (time) for the y-axis? Thanks for help. |
|
From: <da...@la...> - 2011-01-05 23:23:35
|
currently gnuplot only supports time on the X axis, what you would need to
do is to manipulate the data before gnuplot tries to use it.
you could do soemthing like the following perl snippet
#!/usr/bin/perl
while(<>){
chomp;
($first,$second) = split(":",$_);
print $first,".",($second/60),"\n";
}
this will reformat the lines you listed to something like
2010-12-07 8.00
so that instead of integer hours it will read decimal hours.
If your Y axis ticks are on the hour, the graph will look the same. If you
want tick marks in between, you would need to do something like setting
the tick label for 7.5 to be "7:30"
David Lang
On Wed, 5 Jan 2011, steffen wrote:
> Date: Wed, 5 Jan 2011 10:07:50 +0000 (UTC)
> From: steffen <kla...@on...>
> To: gnu...@li...
> Subject: [Gnuplot-info] Need help: Time/date format
>
> Hi,
> I'm going to generate a plot of sunrise time versus date.
> The data file looks like
>
> 2010-12-02 7:53
> 2010-12-03 7:55
> 2010-12-06 7:59
> 2010-12-07 8:00
> ...
>
> So, in the first column is the date (shall be x-axis), in the second the time
> (y-axis). To read the date correctly I did:
>
> set xdata time
> set timefmt "%Y-%m-%d"
>
> But the time (y-axis) is not read correctly, just integer hours. How to set up
> the format (time) for the y-axis?
>
> Thanks for help.
>
>
>
> ------------------------------------------------------------------------------
> Learn how Oracle Real Application Clusters (RAC) One Node allows customers
> to consolidate database storage, standardize their database environment, and,
> should the need arise, upgrade to a full multi-node Oracle RAC database
> without downtime or disruption
> http://p.sf.net/sfu/oracle-sfdevnl
> _______________________________________________
> gnuplot-info mailing list
> gnu...@li...
> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>
|
|
From: Thomas S. <t.s...@fz...> - 2011-01-06 10:29:27
|
in gnuplot version >= 4.4 you could use the following plot command:
plot 'datafilename' using
1:(s=stringcolumn(2),n=strstrt(s,":"),s[1:n-1]+s[n+1:]/60.) with linespoints
david-825 wrote:
>
> currently gnuplot only supports time on the X axis, what you would need to
> do is to manipulate the data before gnuplot tries to use it.
>
> you could do soemthing like the following perl snippet
>
> #!/usr/bin/perl
> while(<>){
> chomp;
> ($first,$second) = split(":",$_);
> print $first,".",($second/60),"\n";
> }
>
> this will reformat the lines you listed to something like
>
> 2010-12-07 8.00
>
> so that instead of integer hours it will read decimal hours.
>
> If your Y axis ticks are on the hour, the graph will look the same. If you
> want tick marks in between, you would need to do something like setting
> the tick label for 7.5 to be "7:30"
>
> David Lang
>
> On Wed, 5 Jan 2011, steffen wrote:
>
>> Date: Wed, 5 Jan 2011 10:07:50 +0000 (UTC)
>> From: steffen <kla...@on...>
>> To: gnu...@li...
>> Subject: [Gnuplot-info] Need help: Time/date format
>>
>> Hi,
>> I'm going to generate a plot of sunrise time versus date.
>> The data file looks like
>>
>> 2010-12-02 7:53
>> 2010-12-03 7:55
>> 2010-12-06 7:59
>> 2010-12-07 8:00
>> ...
>>
>> So, in the first column is the date (shall be x-axis), in the second the
>> time
>> (y-axis). To read the date correctly I did:
>>
>> set xdata time
>> set timefmt "%Y-%m-%d"
>>
>> But the time (y-axis) is not read correctly, just integer hours. How to
>> set up
>> the format (time) for the y-axis?
>>
>> Thanks for help.
>>
>>
>>
>> ------------------------------------------------------------------------------
>> Learn how Oracle Real Application Clusters (RAC) One Node allows
>> customers
>> to consolidate database storage, standardize their database environment,
>> and,
>> should the need arise, upgrade to a full multi-node Oracle RAC database
>> without downtime or disruption
>> http://p.sf.net/sfu/oracle-sfdevnl
>> _______________________________________________
>> gnuplot-info mailing list
>> gnu...@li...
>> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>>
>
> ------------------------------------------------------------------------------
> Learn how Oracle Real Application Clusters (RAC) One Node allows customers
> to consolidate database storage, standardize their database environment,
> and,
> should the need arise, upgrade to a full multi-node Oracle RAC database
> without downtime or disruption
> http://p.sf.net/sfu/oracle-sfdevnl
> _______________________________________________
> gnuplot-info mailing list
> gnu...@li...
> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>
>
--
View this message in context: http://old.nabble.com/Need-help%3A-Time-date-format-tp30599656p30603976.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
|
|
From: Hans-Bernhard B. <HBB...@t-...> - 2011-01-06 20:35:08
|
On 06.01.2011 00:23, da...@la... wrote:
> currently gnuplot only supports time on the X axis,
I wonder what made believe that.
> what you would need to
> do is to manipulate the data before gnuplot tries to use it.
No. This works:
gnuplot> set xdata time
gnuplot> set ydata time
gnuplot> set timefmt x '%Y-%m-%d'
gnuplot> set timefmt y '%H:%M'
gnuplot> p '-' u 1:2 w lp
input data ('e' ends) > 2010-12-02 7:53
input data ('e' ends) > 2010-12-03 7:55
input data ('e' ends) > 2010-12-06 7:59
input data ('e' ends) > 2010-12-07 8:00
input data ('e' ends) > e
gnuplot>
|
|
From: <da...@la...> - 2011-01-06 22:41:57
|
On Thu, 6 Jan 2011, Hans-Bernhard Br?ker wrote:
> On 06.01.2011 00:23, da...@la... wrote:
>> currently gnuplot only supports time on the X axis,
>
> I wonder what made believe that.
>
>> what you would need to
>> do is to manipulate the data before gnuplot tries to use it.
>
> No. This works:
>
> gnuplot> set xdata time
> gnuplot> set ydata time
> gnuplot> set timefmt x '%Y-%m-%d'
> gnuplot> set timefmt y '%H:%M'
> gnuplot> p '-' u 1:2 w lp
> input data ('e' ends) > 2010-12-02 7:53
> input data ('e' ends) > 2010-12-03 7:55
> input data ('e' ends) > 2010-12-06 7:59
> input data ('e' ends) > 2010-12-07 8:00
> input data ('e' ends) > e
> gnuplot>
as of what release? the 4.4 documentation says that the both axis can be
time (which I had missed), but it says that they must use the same
timefmt.
David Lang
|
|
From: Hans-Bernhard B. <HBB...@t-...> - 2011-01-07 00:35:12
|
On 06.01.2011 23:41, da...@la... wrote:
> On Thu, 6 Jan 2011, Hans-Bernhard Br?ker wrote:
>> gnuplot> set xdata time
>> gnuplot> set ydata time
>> gnuplot> set timefmt x '%Y-%m-%d'
>> gnuplot> set timefmt y '%H:%M'
>> gnuplot> p '-' u 1:2 w lp
>> input data ('e' ends)> 2010-12-02 7:53
>> input data ('e' ends)> 2010-12-03 7:55
>> input data ('e' ends)> 2010-12-06 7:59
>> input data ('e' ends)> 2010-12-07 8:00
>> input data ('e' ends)> e
>> gnuplot>
>
> as of what release?
Pretty much since forever. The documentation just never picked up on
the axis argument to 'set timefmt'. You get a hint that something might
be afoot if you inspect the timefmt:
gnuplot> set xdata time
gnuplot> show timefmt
read format for time on x axis is "%d/%m/%y,%H:%M"
read format for time on t axis is "%d/%m/%y,%H:%M"
read format for time on u axis is "%d/%m/%y,%H:%M"
gnuplot> set ydata time
gnuplot> show timefmt
read format for time on y axis is "%d/%m/%y,%H:%M"
read format for time on x axis is "%d/%m/%y,%H:%M"
read format for time on t axis is "%d/%m/%y,%H:%M"
read format for time on u axis is "%d/%m/%y,%H:%M"
read format for time on v axis is "%d/%m/%y,%H:%M"
There would be no point showing so many timefmt strings if not at least
some of them were independent...
|
|
From: Thomas S. <t.s...@fz...> - 2011-01-08 11:29:07
|
'help timecolumn' says:
"To find the right `timefmt` string to use, `timecolumn` searches for a
`using` specification with the same column number as its argument.
If one is found, `timefmt` pattern of the target axis for this specifier
is used. Otherwise, `timecolumn` chooses the x axis `timefmt` per default."
this means, one column for the y axis.
david-825 wrote:
>
> On Fri, 7 Jan 2011, Thomas Sefzick wrote:
>
>> plot 'datafile.dat' using 1:($3-$2)
>>
>> doesn't work with time data.
>>
>> use
>> ... using 'timecolumn(3)-timecolumn(2)'
>> instead, BUT since you are using different time formats for
>> x and y this will not work, too.
>> 'timecolumn()' can only use the time format of one column, which is
>> assigned to one coordinate, but you are dealing with two columns.
>
> column2 and column3 are the same format, so why can't it use that format
> (the y format)
>
> David Lang
>
>> you could use something like in my previous reply, a little bit extended:
>>
>> unset ydata
>> plot "ts.dat" using 1:( \
>> s=stringcolumn(2),n=strstrt(s,":"), \
>> t=stringcolumn(3),m=strstrt(t,":"), \
>> t[1:m-1]+t[m+1:]/60.-s[1:n-1]-s[n+1:]/60.) w lp
>>
>>
>> Steffen-21 wrote:
>>>
>>> Wonderful! That works and is even smarter.
>>> But I stumble over the next problem connected with time data:
>>> If a have a file with date, sunrise and sunset time in three columns
>>> like this:
>>> 2010-12-02 7:53 15:55
>>> 2010-12-03 7:55 15:54
>>> 2010-12-06 7:59 15:53
>>> 2010-12-07 8:00 15:53
>>> 2010-12-09 8:02 15:52
>>> 2010-12-10 8:04 15:52
>>> and I want to plot the length of the day, i.e. sunset-sunrise then
>>> plot 'datafile.dat' using 1:($3-$2)
>>> does not produce the desired result. It seems that every calculation on
>>> time formatted columns does not produce the expected results. How should
>>> calculations with dates/times be done?
>>> Steffen
>>>
>>>
>>> Am 06.01.2011 21:35, schrieb Hans-Bernhard Br?ker:
>>>> On 06.01.2011 00:23, da...@la... wrote:
>>>>> currently gnuplot only supports time on the X axis,
>>>> I wonder what made believe that.
>>>>
>>>>> what you would need to
>>>>> do is to manipulate the data before gnuplot tries to use it.
>>>> No. This works:
>>>>
>>>> gnuplot> set xdata time
>>>> gnuplot> set ydata time
>>>> gnuplot> set timefmt x '%Y-%m-%d'
>>>> gnuplot> set timefmt y '%H:%M'
>>>> gnuplot> p '-' u 1:2 w lp
>>>> input data ('e' ends)> 2010-12-02 7:53
>>>> input data ('e' ends)> 2010-12-03 7:55
>>>> input data ('e' ends)> 2010-12-06 7:59
>>>> input data ('e' ends)> 2010-12-07 8:00
>>>> input data ('e' ends)> e
>>>> gnuplot>
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> Learn how Oracle Real Application Clusters (RAC) One Node allows
>>>> customers
>>>> to consolidate database storage, standardize their database
>>>> environment,
>>>> and,
>>>> should the need arise, upgrade to a full multi-node Oracle RAC database
>>>> without downtime or disruption
>>>> http://p.sf.net/sfu/oracle-sfdevnl
>>>> _______________________________________________
>>>> gnuplot-info mailing list
>>>> gnu...@li...
>>>> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> Gaining the trust of online customers is vital for the success of any
>>> company
>>> that requires sensitive data to be transmitted over the Web. Learn how
>>> to
>>> best implement a security strategy that keeps consumers' information
>>> secure
>>> and instills the confidence they need to proceed with transactions.
>>> http://p.sf.net/sfu/oracle-sfdevnl
>>> _______________________________________________
>>> gnuplot-info mailing list
>>> gnu...@li...
>>> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>>>
>>>
>>
>> --
>> View this message in context:
>> http://old.nabble.com/Need-help%3A-Time-date-format-tp30599656p30615052.html
>> Sent from the Gnuplot - User mailing list archive at Nabble.com.
>>
>>
>> ------------------------------------------------------------------------------
>> Gaining the trust of online customers is vital for the success of any
>> company
>> that requires sensitive data to be transmitted over the Web. Learn how
>> to
>> best implement a security strategy that keeps consumers' information
>> secure
>> and instills the confidence they need to proceed with transactions.
>> http://p.sf.net/sfu/oracle-sfdevnl
>> _______________________________________________
>> gnuplot-info mailing list
>> gnu...@li...
>> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>
> ------------------------------------------------------------------------------
> Gaining the trust of online customers is vital for the success of any
> company
> that requires sensitive data to be transmitted over the Web. Learn how
> to
> best implement a security strategy that keeps consumers' information
> secure
> and instills the confidence they need to proceed with transactions.
> http://p.sf.net/sfu/oracle-sfdevnl
> _______________________________________________
> gnuplot-info mailing list
> gnu...@li...
> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>
>
--
View this message in context: http://old.nabble.com/Need-help%3A-Time-date-format-tp30599656p30621290.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
|
|
From: tai v. <ta...@ea...> - 2011-01-08 15:57:22
|
All, This thread (Subject: Need help: Time/date format) has been extremely valuable to me this week and will inform further work too. Many thanks to Steffen, David, Thomas, and Hans-Bernhard. I wanted to remind you that your current and archived queries, advice, and clarification frequently help many users and potential users beyond the initial poster. Regards, tai viinikka || ta...@ea... -- The great peril of our existence lies in the fact that our diet consists entirely of souls. -- Inuit credo On 08-Jan-2011 06:29, Thomas Sefzick wrote: > 'help timecolumn' > > david-825 wrote: >>> Steffen-21 wrote: >>>> >>>> Am 06.01.2011 21:35, schrieb Hans-Bernhard Br?ker: |
|
From: steffen <kla...@on...> - 2011-01-06 07:32:42
|
Thanks for the exhaustive answer. The perl script will help. Steffen |
|
From: Steffen <st...@on...> - 2011-01-07 09:05:27
|
Wonderful! That works and is even smarter.
But I stumble over the next problem connected with time data:
If a have a file with date, sunrise and sunset time in three columns
like this:
2010-12-02 7:53 15:55
2010-12-03 7:55 15:54
2010-12-06 7:59 15:53
2010-12-07 8:00 15:53
2010-12-09 8:02 15:52
2010-12-10 8:04 15:52
and I want to plot the length of the day, i.e. sunset-sunrise then
plot 'datafile.dat' using 1:($3-$2)
does not produce the desired result. It seems that every calculation on
time formatted columns does not produce the expected results. How should
calculations with dates/times be done?
Steffen
Am 06.01.2011 21:35, schrieb Hans-Bernhard Bröker:
> On 06.01.2011 00:23, da...@la... wrote:
>> currently gnuplot only supports time on the X axis,
> I wonder what made believe that.
>
>> what you would need to
>> do is to manipulate the data before gnuplot tries to use it.
> No. This works:
>
> gnuplot> set xdata time
> gnuplot> set ydata time
> gnuplot> set timefmt x '%Y-%m-%d'
> gnuplot> set timefmt y '%H:%M'
> gnuplot> p '-' u 1:2 w lp
> input data ('e' ends)> 2010-12-02 7:53
> input data ('e' ends)> 2010-12-03 7:55
> input data ('e' ends)> 2010-12-06 7:59
> input data ('e' ends)> 2010-12-07 8:00
> input data ('e' ends)> e
> gnuplot>
>
>
> ------------------------------------------------------------------------------
> Learn how Oracle Real Application Clusters (RAC) One Node allows customers
> to consolidate database storage, standardize their database environment, and,
> should the need arise, upgrade to a full multi-node Oracle RAC database
> without downtime or disruption
> http://p.sf.net/sfu/oracle-sfdevnl
> _______________________________________________
> gnuplot-info mailing list
> gnu...@li...
> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
|
|
From: Thomas S. <t.s...@fz...> - 2011-01-07 15:11:56
|
plot 'datafile.dat' using 1:($3-$2)
doesn't work with time data.
use
... using 'timecolumn(3)-timecolumn(2)'
instead, BUT since you are using different time formats for
x and y this will not work, too.
'timecolumn()' can only use the time format of one column, which is
assigned to one coordinate, but you are dealing with two columns.
you could use something like in my previous reply, a little bit extended:
unset ydata
plot "ts.dat" using 1:( \
s=stringcolumn(2),n=strstrt(s,":"), \
t=stringcolumn(3),m=strstrt(t,":"), \
t[1:m-1]+t[m+1:]/60.-s[1:n-1]-s[n+1:]/60.) w lp
Steffen-21 wrote:
>
> Wonderful! That works and is even smarter.
> But I stumble over the next problem connected with time data:
> If a have a file with date, sunrise and sunset time in three columns
> like this:
> 2010-12-02 7:53 15:55
> 2010-12-03 7:55 15:54
> 2010-12-06 7:59 15:53
> 2010-12-07 8:00 15:53
> 2010-12-09 8:02 15:52
> 2010-12-10 8:04 15:52
> and I want to plot the length of the day, i.e. sunset-sunrise then
> plot 'datafile.dat' using 1:($3-$2)
> does not produce the desired result. It seems that every calculation on
> time formatted columns does not produce the expected results. How should
> calculations with dates/times be done?
> Steffen
>
>
> Am 06.01.2011 21:35, schrieb Hans-Bernhard Bröker:
>> On 06.01.2011 00:23, da...@la... wrote:
>>> currently gnuplot only supports time on the X axis,
>> I wonder what made believe that.
>>
>>> what you would need to
>>> do is to manipulate the data before gnuplot tries to use it.
>> No. This works:
>>
>> gnuplot> set xdata time
>> gnuplot> set ydata time
>> gnuplot> set timefmt x '%Y-%m-%d'
>> gnuplot> set timefmt y '%H:%M'
>> gnuplot> p '-' u 1:2 w lp
>> input data ('e' ends)> 2010-12-02 7:53
>> input data ('e' ends)> 2010-12-03 7:55
>> input data ('e' ends)> 2010-12-06 7:59
>> input data ('e' ends)> 2010-12-07 8:00
>> input data ('e' ends)> e
>> gnuplot>
>>
>>
>> ------------------------------------------------------------------------------
>> Learn how Oracle Real Application Clusters (RAC) One Node allows
>> customers
>> to consolidate database storage, standardize their database environment,
>> and,
>> should the need arise, upgrade to a full multi-node Oracle RAC database
>> without downtime or disruption
>> http://p.sf.net/sfu/oracle-sfdevnl
>> _______________________________________________
>> gnuplot-info mailing list
>> gnu...@li...
>> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>
>
> ------------------------------------------------------------------------------
> Gaining the trust of online customers is vital for the success of any
> company
> that requires sensitive data to be transmitted over the Web. Learn how
> to
> best implement a security strategy that keeps consumers' information
> secure
> and instills the confidence they need to proceed with transactions.
> http://p.sf.net/sfu/oracle-sfdevnl
> _______________________________________________
> gnuplot-info mailing list
> gnu...@li...
> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>
>
--
View this message in context: http://old.nabble.com/Need-help%3A-Time-date-format-tp30599656p30615052.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
|
|
From: <da...@la...> - 2011-01-07 18:28:41
|
On Fri, 7 Jan 2011, Thomas Sefzick wrote:
> plot 'datafile.dat' using 1:($3-$2)
>
> doesn't work with time data.
>
> use
> ... using 'timecolumn(3)-timecolumn(2)'
> instead, BUT since you are using different time formats for
> x and y this will not work, too.
> 'timecolumn()' can only use the time format of one column, which is
> assigned to one coordinate, but you are dealing with two columns.
column2 and column3 are the same format, so why can't it use that format
(the y format)
David Lang
> you could use something like in my previous reply, a little bit extended:
>
> unset ydata
> plot "ts.dat" using 1:( \
> s=stringcolumn(2),n=strstrt(s,":"), \
> t=stringcolumn(3),m=strstrt(t,":"), \
> t[1:m-1]+t[m+1:]/60.-s[1:n-1]-s[n+1:]/60.) w lp
>
>
> Steffen-21 wrote:
>>
>> Wonderful! That works and is even smarter.
>> But I stumble over the next problem connected with time data:
>> If a have a file with date, sunrise and sunset time in three columns
>> like this:
>> 2010-12-02 7:53 15:55
>> 2010-12-03 7:55 15:54
>> 2010-12-06 7:59 15:53
>> 2010-12-07 8:00 15:53
>> 2010-12-09 8:02 15:52
>> 2010-12-10 8:04 15:52
>> and I want to plot the length of the day, i.e. sunset-sunrise then
>> plot 'datafile.dat' using 1:($3-$2)
>> does not produce the desired result. It seems that every calculation on
>> time formatted columns does not produce the expected results. How should
>> calculations with dates/times be done?
>> Steffen
>>
>>
>> Am 06.01.2011 21:35, schrieb Hans-Bernhard Br?ker:
>>> On 06.01.2011 00:23, da...@la... wrote:
>>>> currently gnuplot only supports time on the X axis,
>>> I wonder what made believe that.
>>>
>>>> what you would need to
>>>> do is to manipulate the data before gnuplot tries to use it.
>>> No. This works:
>>>
>>> gnuplot> set xdata time
>>> gnuplot> set ydata time
>>> gnuplot> set timefmt x '%Y-%m-%d'
>>> gnuplot> set timefmt y '%H:%M'
>>> gnuplot> p '-' u 1:2 w lp
>>> input data ('e' ends)> 2010-12-02 7:53
>>> input data ('e' ends)> 2010-12-03 7:55
>>> input data ('e' ends)> 2010-12-06 7:59
>>> input data ('e' ends)> 2010-12-07 8:00
>>> input data ('e' ends)> e
>>> gnuplot>
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> Learn how Oracle Real Application Clusters (RAC) One Node allows
>>> customers
>>> to consolidate database storage, standardize their database environment,
>>> and,
>>> should the need arise, upgrade to a full multi-node Oracle RAC database
>>> without downtime or disruption
>>> http://p.sf.net/sfu/oracle-sfdevnl
>>> _______________________________________________
>>> gnuplot-info mailing list
>>> gnu...@li...
>>> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>>
>>
>> ------------------------------------------------------------------------------
>> Gaining the trust of online customers is vital for the success of any
>> company
>> that requires sensitive data to be transmitted over the Web. Learn how
>> to
>> best implement a security strategy that keeps consumers' information
>> secure
>> and instills the confidence they need to proceed with transactions.
>> http://p.sf.net/sfu/oracle-sfdevnl
>> _______________________________________________
>> gnuplot-info mailing list
>> gnu...@li...
>> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>>
>>
>
> --
> View this message in context: http://old.nabble.com/Need-help%3A-Time-date-format-tp30599656p30615052.html
> Sent from the Gnuplot - User mailing list archive at Nabble.com.
>
>
> ------------------------------------------------------------------------------
> Gaining the trust of online customers is vital for the success of any company
> that requires sensitive data to be transmitted over the Web. Learn how to
> best implement a security strategy that keeps consumers' information secure
> and instills the confidence they need to proceed with transactions.
> http://p.sf.net/sfu/oracle-sfdevnl
> _______________________________________________
> gnuplot-info mailing list
> gnu...@li...
> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
|