bars_list([l1,l2,...,ln]) == bars(l1,l2,...,ln)?



I can only create the args to bars as a list (as shown on rhs of Subject
==).  The bars I'm talking about is the one in section 48.2.4
of:

http://maxima.sourceforge.net/docs/manual/en/maxima_48.html

I need this to make a bar plot of pdf_binomial.

The list I'm making is with:

pdf_bi_bar(n,p):=makelist([j,pdf_binomial(j,n,p),1],j,0,n);

I was planning on passing this to the plot2d function as shown in
the section 48.2.4 example.

TIA.

-regards,
Larry