Questions tagged [stripchart]

R stripchart produces one dimensional scatter plots (or dot plots) of the given data.

stripchart produces one dimensional scatter plots (or dot plots) of the given data. These plots are a good alternative to boxplots when sample sizes are small.

46 questions
0
votes
0 answers

Vega lite visualisation

I am trying to make 3 charts (scatter plot, strip chart and bar chart) in vega lite. The one requirement is if we select a particular data from any chart it should filter out that specific information in the other two charts. But in bar chart i am…
0
votes
1 answer

How to plot: Connected BEFORE and AFTER hormone levels with lines?

I have never posted on stack overflow (or any coding website) so I hope I can ask this well... I am trying to make a plot showing how corticosterone (a hormone) increases in 30 minutes from baseline (base) to stress-induced (SI) levels in birds. I…
Rachel
  • 1
  • 1
0
votes
0 answers

Border/Fill Around Strip Chart Points

Question I know this question (or similar questions) have been posted, though I cannot seem to find what is going on. I am doing a strip chart and I have tried using both geom_jitter(position = position_jitter(0.065)) and geom_point(position =…
Anonymous
  • 1
  • 1
0
votes
1 answer

R: Setting the color for an individual data point in stripchart

I have trouble in setting the color of an outlier in a stripchart. I tried two method, but neither worked. Here is the code: x = rnorm(30) x[20]=10 # 1 stripchart(x,main='Outlier Plot',xlab='x', pch=20, col=ifelse(x==10, 'red', 'blue')) # 2 cols =…
ppppppppp
  • 3
  • 2
0
votes
1 answer

add data labels to stripchart

I have made a stripchart with a threshold marked in red. I would like to label the point that falls to the left of the threshold, but can't seem to get the 'text' function working at all. stripchart screenshot Here is the stripchart code:…
Joanne
  • 117
  • 7
0
votes
1 answer

Added color by group

Hi everyone! I try combined boxplot and stripchart to represent some data, and trying to color by group: xfact yvar Non-response 0.0012 Non-response 0.0002 Non-response 0.0018 Non-response 0.0004 Non-response 0.0013 Non-response 0.0004 …
TeoK
  • 511
  • 6
  • 13
0
votes
1 answer

Excluding outliers when plotting a Stripchart with ggplot2

I'm trying to create a combination Boxplot/Scatterplot. I'm doing alright with it so far but there's one issue that's really bothering me that I've been unable to figure out. I'm in R and I've installed the ggplot2 package. Here's the code I'm…
Ausfernan
  • 1
  • 2
0
votes
2 answers

Stripchart using Presence/absence over time

Trying to make a stripchart similar to this in R: Here is some example data (df), where for any given day it gives whether the individual was present (1) or absent (0). Day ID1 ID2 ID3 1 1 1 0 2 0 1 1 3 0 0 0 4 1 …
JPF
  • 89
  • 6
0
votes
0 answers

stripchart with pop-up in shiny

I'm using Shiny to make an app that displays health data geographically (using leaflet), but I also want to display the data as a stripchart to make it easy to visualize the mean, distribution, quantiles of the data. Right now I'm using ggplot to…
Clare
  • 69
  • 1
  • 13
0
votes
1 answer

Plot matrix rows on stripchart as a raster plot in R

I've been struggling with this for a long time. I'd like to create a raster plot in R to show the times of the action potentials (AP) of a neuron relative to a stimulus. Something like this: Each row represents the AP series in a given time window…
0
votes
1 answer

Using expression to add Greek letters to group.names in R

I am trying to rename the group names in a stripchart. I have tried using bquote and expression, but ran into the same problem. Everything within the brackets following expression is printed as a group label without formatting (so in the example…
HarD
  • 183
  • 9
0
votes
0 answers

Boxpot shows result like a stripchart?

I want to plot a column with over 30.000 records using Boxpot. The data range is various (from 0 to 1500000). I got the result like this: Why it doens't show the boxplot? It looks like a stripchart to me. How to show the boxplot (with median,…
trminh89
  • 877
  • 2
  • 10
  • 17
0
votes
0 answers

R stripchart() and abline(): Adding Arbitrary lines by Category

Morning Community, I was learning how to use stripchart() in R as well as the abline()function to draw arbitrary lines in the graph. I was able to draw horizontal lines when I was grouping with one variable, but was unsuccessful with two or more.…
Bluebird
  • 531
  • 1
  • 5
  • 18
0
votes
1 answer

Android live rendering strip chart library

I am trying to find the best charting library for my android app that receives live data from a data acquisition device (supports up to 800 samples per sec). I need to display a live, moving strip chart with some additional features like zooming in…
mojorisinify
  • 377
  • 5
  • 22
-1
votes
2 answers

Simple stripchart in C++ / Qt

I have some data coming over serial connection into my C++ Application. Now I wan't to make a simple GUI with a strip chart of those data plus some buttons. (Something like 10Hz refresh rate) The Buttons are not really a problem. But I didn't find…
magu_
  • 4,766
  • 3
  • 45
  • 79