Questions tagged [jitter]

The Jitter responsibility is to compile intermediate code to machine code in run time.

See here for more info

203 questions
5
votes
1 answer

Unbound workqueue's kthreads CPU affinity

Is there a way to set CPU affinity for unbound workqueue's kthreads (those that named kthread/uXX:y)? Something like cpu mask for regular workqueues. Is it a good idea to set it for each kthread using taskset?
Filipp
  • 859
  • 1
  • 6
  • 20
5
votes
1 answer

adaptive jitter buffer without packet loss

I'm concerned with the design of an adaptive jitter buffer that increases and decreases capacity with increases and decreases in the jitter calculation. I see no reason to make any adjustments to latency or capacity unless there is a buffer underrun…
alpartis
  • 1,086
  • 14
  • 29
4
votes
2 answers

selective jitter of geom_points

I have a ggplot where some of the points are overlapping with a few others. I was wondering if there is a way to put the points one above the other. In my case, there are 2 points at most…
let_there_be_light
  • 837
  • 3
  • 9
  • 15
4
votes
1 answer

Is it possible to disable the Jitter Buffer in WebRTC (Chrome/Chromium)

I am trying to reduce the Chromium WebRTC video delay as much as possible for a remote machine control application. Since the transmitting and receiving PCs are directly connected via Ethernet (crossover cable) I'm guessing that receive buffering…
Chris M
  • 51
  • 1
  • 4
4
votes
1 answer

How to generate the same plot with "jitter", and how to jitter selected points (not all points)?

What I would like to do is: a) have the plot produced by the ggplot code be the same each time it runs [set.seed kind of notion?] and b) have text labels jittered only for labels that have the same y-axis value -- leave the other text labels alone.…
lawyeR
  • 7,488
  • 5
  • 33
  • 63
4
votes
1 answer

Add jitter to column value using dplyr

I have a data frame of the following format. author year stages 1 A 1150 1 2 B 1200 1 3 C 1200 1 4 D 1300 1 5 D 1300 1 6 E 1390 3 7 F 1392 3 8 G 1400 3 9 G 1400 3 ... I want to jitter each…
wdnsd
  • 223
  • 3
  • 11
4
votes
1 answer

Can I Increase Vector Precision in THREE.js?

In THREE.js, I occasionally find myself wishing for better control over vector precision, especially when working with large floats, such as in a solar system. Is there any way to do this? In the linked example, I'm building a simple solar system…
Zob
  • 460
  • 4
  • 14
3
votes
2 answers

R, ggplot, How do I keep related points together when using jitter?

One of the variables in my data frame is a factor denoting whether an amount was gained or spent. Every event has a "gain" value; there may or may not be a corresponding "spend" amount. Here is an image with the observations overplotted: Adding…
schumacher
  • 78
  • 6
3
votes
3 answers

Css jittery text translate

[SOLUTION] Solution is to use the will-change CSS property taht forces GPU rendering: will-change: transform; [ORIGINAL QUESTION] I've been digging a lot internet and found no solution to a problem that seems rather simple which is, translating a…
Durss
  • 306
  • 2
  • 11
3
votes
1 answer

How to add Jitter to scatter plot with X and Y values?

I have created random data and trying to add jitter in scatter plot but I can't figure out how to apply jitter for the X and Y values? I have data in the form of X and Y but not the whole as a data to pass it to the seaborn plotting library. def…
Mayur Potdar
  • 451
  • 1
  • 8
  • 18
3
votes
1 answer

Keep points above zero in geom_jitter

I'm working on a scatterplot using geom_jitter but want to set limits on the y axis (min value = 0). Is there a way to allow the points to "jitter" per usual but to tell them not to drop below y=0?
tcarpenter
  • 265
  • 1
  • 2
  • 11
3
votes
2 answers

Lines connecting jittered points - dodging by multiple groups

I try to connect jittered points between measurements from two different methods (measure) on an x-axis. These measurements are linked to one another by the probands (a), that can be separated into two main groups, patients (pat) and controls…
tjebo
  • 21,977
  • 7
  • 58
  • 94
3
votes
2 answers

Overlaying jittered points on boxplot conditioned by a factor using ggplot2

I am making a boxplot conditioned by a factor similar to this example: p <- ggplot(mtcars, aes(factor(cyl), mpg)) p + geom_boxplot(aes(fill = factor(am))) There are few points in the data set, and I'd like to express this visually by overlaying the…
bump2pass
  • 55
  • 1
  • 5
3
votes
0 answers

JavaScript: Calculate Jitter and Packet Loss

Is there a way to calculate Jitter and Packet Loss using JavaScript? If there is no way to do that (and we have Latency), is there a way to calculate Jitter and Packet Loss with Latency (Ping Time)? If yes, what is the formula?
Vahid
  • 3,384
  • 2
  • 35
  • 69
3
votes
1 answer

ggplot specify position of vertical segments for categorical x r

I am plotting row data and I added a segment of the credible intervals and a black point for the fitted values statistically calculated. My problem is that I would like to have these lines (and the black point) slightly moved (horizontally) respect…
have fun
  • 381
  • 5
  • 17
1
2
3
13 14