Hello, I am seeking to create a twoway graph of date/time vs. tide height, in which the data points are connected by a smooth "roller-coaster" line. Is this possible?
The data structure is:
Commands I've used are:
, which creates a jagged line, and
or
both create a statistical conversion that no longer displays the diurnal tide variations day by day. I believe what I need is a command that would interpolate between the x/y data coordinates, but not sure how to tackle that.
The data structure is:
HTML Code:
day ht date Thu 2.2 01jan2015 01:43:00 Thu 6.5 01jan2015 08:15:00 Thu -.3 01jan2015 15:08:00 Thu 4.7 01jan2015 22:03:00 Fri 2.4 02jan2015 02:38:00 Fri 6.5 02jan2015 08:59:00 Fri -.6 02jan2015 15:52:00 Fri 4.9 02jan2015 22:54:00 Sat 2.5 03jan2015 03:28:00 Sat 6.5 03jan2015 09:41:00 Sat -.7 03jan2015 16:32:00
HTML Code:
twoway connected ht date
HTML Code:
twoway lowess ht date
HTML Code:
twoway lpoly ht date
Comment