Ask Your Question
0

how to enter a list of data points in an interact?

asked 2012-03-20 12:15:02 +0200

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

I want to enter a default list of (x,y) data for a scatter plot that the user can modify to create a different scatter plot.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2012-03-20 12:34:20 +0200

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

I am not sure how exactly you want to do this but let me know whether this is what you want. User can change the array and unfocus from the input box to update.

@interact
def int_plot(str1 = input_box('[[1,2],[3,5],[4,2]]',type = str, label='array 1: ')):
    array1=eval(str1)
    scatter_plot(array1).show()

image description

edit flag offensive delete link more

Comments

That looks like what I need -- thanks. I'll let you know how it works when I adapt it.

dasmith88 gravatar imagedasmith88 ( 2012-03-20 14:05:05 +0200 )edit
1

Yes, it's perfect. For the record, here's the code with a few bells and whistles added. @interact def int_plot(t1=text_control("Enter data as a list of pairs, and set window [a,b] by [c,d]."), str1 = input_box('[[1975,4123], [1980,3851], [1985,3461], [1990,2827], [1995,2515], [2000, 2092]]',type = str, label='data '), a = (1970), b = (2000), c = (2000), d = (4500) , xlabel= ('Year'), ylabel= ('Consumption')): array1=eval(str1) s=scatter_plot(array1, xmin=a, xmax = b, ymin=c, ymax=d, figsize=6, axes_labels=[str(xlabel),str(ylabel)]) show(s)

dasmith88 gravatar imagedasmith88 ( 2012-03-20 15:15:05 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2012-03-20 12:15:02 +0200

Seen: 460 times

Last updated: Mar 20 '12