I was working with pd in windows and the bar type does not mix well with
line and dot.

I was going to recreate the problem on the android.

  a=.1 3 4 5 8 9 13 15 17 18 19 20;12$i.6
   pd'reset'
   pd a
   pd'show'
   pd'type dot'
   pd'pensize 8'
   pd a
   pd'show'
   pd'type line'
   pd'pensize 1'
   pd'show'
   pd a
   pd'show'
   pd'type bar'
   pd'show'
   pd a
   pd'show'
   pd'type bar'
   pd a
   pd'show'

On the android I get a reset after show so the problem is different from
windows and jhs.

Tried to not show between types

   pd'type dot'
   pd'pensize 8'
   pd a
   pd'type line'
   pd'pensize 1'
   pd a
   pd'show'

Ok this works fine and as intended.

  pd'type dot'
   pd'pensize 8'
   pd a
   pd'type line'
   pd'pensize 1'
   pd a
   pd'type bar'
   pd a
   pd'show'

Now I get the same problem as I get in windows and jhs.

The type bar resets the markings on the x axis to 1 to 12 instead of the
scale from the same data used in dot and line.

The problem is basically that type bar ignores the missing values.
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to