(:plot curve.data="Attach:example_5.txt" curve.ycol=2 curve2.data="Attach:example_5.txt" curve2.ycol=3 :) (:plotend:)
(:plot curve.data.colsep=",\s*" :) 1, 10, 20, 30, 40 2, 11, 22, 31, 41 3, 13, 24, 33, 42 4, 15, 25, 35, 43 5, 16, 26, 36, 44 6, 18, 27, 37, 45 7, 20, 30, 38, 46 8, 20, 30, 38, 46 9, 20, 30, 38, 46 10, 20, 30, 38, 46 (:plotend:)
(:plot curve.data.colsep="," :) 1, 10, 20, 30, 40 2, 11, 22, 31, 41 3, 13, 24, 33, 42 4, 15, 25, 35, 43 5, 16, 26, 36, 44 6, 18, 27, 37, 45 7, 20, 30, 38, 46 8, 20, 30, 38, 46 9, 20, 30, 38, 46 10, 20, 30, 38, 46 (:plotend:)
(:plot curve.data.skiprows = 3 :) This is header It is describe data Bla-bla-bla 1 10 20 30 40 2 11 22 31 41 3 13 24 33 42 4 15 25 35 43 5 16 26 36 44 6 18 27 37 45 7 20 30 38 46 8 20 30 38 46 9 20 30 38 46 10 20 30 38 46 (:plotend:)
(:plot curve.data.skiprows = 3 :) 1 10 20 30 40 2 11 22 31 41 3 13 24 33 42 4 15 25 35 43 5 16 26 36 44 6 18 27 37 45 7 20 30 38 46 8 20 30 38 46 9 20 30 38 46 10 20 30 38 46 (:plotend:)
Symbol | Meaning | Example |
%a | Weekday as locale’s abbreviated name. | Пн., Вт.,..., Вс. (ru_RU), Sun, Mon, ..., Sat (en_US) |
%A | Weekday as locale’s full name. | Понедельник, Вторник, ..., Воскресенье (ru_RU), Sunday, Monday, ..., Saturday (en_US) |
%w | Weekday as a decimal number, where 0 is Sunday and 6 is Saturday. | 0, 1,... 6 |
%d | Day of the month as a zero-padded decimal number. | 01, 02,... 31 |
%b | Month as locale’s abbreviated name. | Янв., Фев., ..., Дек. (ru_RU), Jan, Feb, ..., Dec (en_US) |
%B | Month as locale’s full name. | Январь, Февраль,..., Декабрь (ru_RU), January, February, ..., December (en_US) |
%m | Month as a zero-padded decimal number. | 01, 02, ..., 12 |
%y | Year without century as a zero-padded decimal number. | 00, 01, 99 |
%Y | Year with century as a decimal number. | 1917, 2000, 2015 |
%H | Hour (24-hour clock) as a zero-padded decimal number. | 00, 01, ..., 23 |
%I | Hour (12-hour clock) as a zero-padded decimal number. | 00, 01, ..., 12 |
%p | Locale’s equivalent of either AM or PM. | AM, PM (для en_US) |
%M | Minute as a zero-padded decimal number. | 00, 01, ..., 59 |
%S | Second as a zero-padded decimal number. | 00, 01, ..., 59 |
%f | Microsecond as a decimal number, zero-padded on the left. | 000000, 000001, ..., 999999 |
%j | Day of the year as a zero-padded decimal number. | 001, 002, ..., 366 |
%U | Week number of the year (Sunday as the first day of the week) as a zero padded decimal number. All days in a new year preceding the first Sunday are considered to be in week 0. | 00, 01, ..., 53 |
%c | Locale’s appropriate date and time representation. | Вт. 06 янв. 2015 10:23:25 (ru_RU), Tue Aug 16 21:30:00 1988 (en_US) |
%x | Locale’s appropriate date representation. | 06.01.2015 (ru_RU), 08/16/1988 (en_US) |
%X | Locale’s appropriate time representation. | 10:26:16 (ru_RU, en_US) |
To use calendar data type, necessary for axis, on which will be shown date, set parameter type to "datetime".
(:plot curve.data.formatcol1="%d.%m.%Y" x.type="datetime" :) 01.01.2014 0 01.02.2014 2 01.03.2014 10 01.04.2014 15 01.05.2014 13 01.06.2014 15 01.07.2014 16 01.08.2014 20 01.09.2014 20 01.10.2014 18 01.11.2014 22 01.12.2014 24 (:plotend:)