You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
p_ch_eq <- ggcyto(transform(gat2_comp, transList), aes(x = 488 B 525/50-A, y = 640 C 670/10-A))
p_ch_eq <- p_ch_eq + geom_hex(bins = 128)
p_ch_eq + ggcyto_par_set(limits = list(x = c(0.5, 5), y = c(0, 5))) + geom_density2d(colour = "black")
I get this plot:
As you can see the values for both axis (x and y) are displayed from 1 to 5. This is log scale. When I add the function scale_x_flowjo_fasinh() to scale up my data in the x axis I got the following plot:
And as you can see there are no displayed values for the x axis. Is there any way to transform the data along the x axis and at the same time display the values of that axis?
The text was updated successfully, but these errors were encountered:
Make sure you don't transform 488 B 525/50-A when your do transform(gat2_comp, transList) so that you end up transforming it twice as you add scale_x_flowjo_fasinh
Using the following function:
p_ch_eq <- ggcyto(transform(gat2_comp, transList), aes(x =
488 B 525/50-A
, y =640 C 670/10-A
))p_ch_eq <- p_ch_eq + geom_hex(bins = 128)
p_ch_eq + ggcyto_par_set(limits = list(x = c(0.5, 5), y = c(0, 5))) + geom_density2d(colour = "black")
I get this plot:
As you can see the values for both axis (x and y) are displayed from 1 to 5. This is log scale. When I add the function scale_x_flowjo_fasinh() to scale up my data in the x axis I got the following plot:
And as you can see there are no displayed values for the x axis. Is there any way to transform the data along the x axis and at the same time display the values of that axis?
The text was updated successfully, but these errors were encountered: