Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
626 views

How does one overcome overlapping points without jitter or transparency in ggplot2

I am starting to use ggplot2. I have some small n (about 30 or so) granular data with lots of overlap. Neither jitter nor alpha (transparency) are suitable. Instead a stripchart with stack and offset ...
2
votes
3answers
112 views

R boxplot and stripchart side-by-side in 1 figure

Is it possible to plot a boxplot and a stripchart next to each other in the same figure? If I run this code, the stripchart overrides the boxplots. What i actually want is that they lay next to each ...
1
vote
2answers
142 views

Is Python ever supposed to crash?

I am running a stand-alone Python v3.2.2/Tkinter program on Windows, not calling any external libraries. Idle has been very helpful in reporting exceptions, and the program has been debugged to the ...
1
vote
6answers
1k views

Quick and dirty stripchart in python?

I have some python code that receives a message every so often containing a timestamp and an edge transition, either low-to-high, or high-to-low. I'd like to graph each transition on a stripchart for ...