结果:找到“LOT”相关内容1000个,排序为按回复时间降序,搜索更多相关帖子请点击“高级”
请教boxplot加显著性标注的问题
6 个回复 - 20601 次查看
我用ggplot2做的boxplot,想给他加上显著性标注,用ggsignif,包里带的例子图是下面这样的:
我的数据见附件,用的代码为:
ggplot(data = up, aes(x=gene, y=Log2FC)) + geom_boxplot(aes(fill=Metabolism), posi ...
2017-11-18 21:33 - lydia5555 - R语言论坛
统计与作图用R语言:forestplot代码+数据
1 个回复 - 715 次查看
统计与作图用R语言:forestplot代码+数据
统计与作图用R语言:forestplot代码+数据
统计与作图用R语言:forestplot代码+数据
统计与作图用R语言:forestplot代码+数据
统计与作图用R语言:forestplot代码+ ...
2021-7-4 17:35 - Fu-pear - 现金交易版
R语言基础与ggplot2绘图ppt与数据及代码
1 个回复 - 734 次查看
R语言基础与ggplot2绘图pptR语言基础与ggplot2绘图ppt与数据及代码
更详细的内容,请参考下面的截图说明!
R语言基础与ggplot2绘图ppt与数据及代码
R语言基础与ggplot2绘图ppt与数据及代码
R语言基础与g ...
2022-9-20 19:51 - Lala-20200 - 现金交易版
ggplot2求教——如何调整x轴显示的时间刻度
15 个回复 - 13281 次查看
数据入图所示,year是日期数据
ggplot(dt1,aes(x = year,y = rate)) +
geom_line() +
geom_point()
代码如上,
但是出来的图,x轴是显示2014,2016,2018
我想让x轴显示2013,2014,2015,2016,2017,20 ...
2018-6-7 14:24 - allain - R语言论坛
急:交互项marginsplot为什么输出不了图片呀?
9 个回复 - 2885 次查看
交互项c.f2#gndr
gndr是一个性别虚拟变量(0,1), f2是通过主成分因子提取的变量,取值范围 [-2.4489665,2.7713876],连续变量
margins gndr, at( f2 =(-3(0.1)3)) //性别与f2之间的交互
以上这一步输出正常 ...
2020-6-15 16:38 - mrlvke - Stata专版
stata中marginscontplot2命令如何在同一坐标轴中作图
9 个回复 - 4947 次查看
求教各位大神,marginscontplot2命令可以把图输出到同一个坐标轴吗?在做倒U的调节时,我用marginscontplot2命令,
reg y d1 c.d1#c.d1 v1 c.d1#c.v1 c.v1#c.d1#c.d1
marginscontplot2 d1 v1, at1(0(0.1)1) at2( ...
2021-12-18 21:38 - 杨小妮yln - 悬赏大厅
r语言ggplot2图例修改
2 个回复 - 1198 次查看
ggplot(data = TFP_S,aes(rtfpna,color = country),scale_color_brewer(palette = 1)) + geom_density()
1.修改图例为线型,而不是方框
2.修改图例为中文,而不是英文
2021-5-24 17:21 - luochen1002 - R语言论坛
断点回归用rdplot,报错
5 个回复 - 3085 次查看
rdplot y x, c(0) p(1) graph_options(title(线性拟合))
报错: rangen(): 3351 argument has missing values
: - function returned error
r(3351);
查了x y都没有缺失值,为什么会 ...
2021-11-29 10:59 - lilyupcool - Stata专版
coefplotx轴与图形不对齐的问题
4 个回复 - 1813 次查看
如图所示,我进行了10次回归(X变量的含义相同但对应的具体数值有所不同,共分为5类), 我用如下代码进行coeflot绘图时发现X州与图形并不对应,求大神帮忙,怎么解决这个问题
preserve
eststo x1:xtreg y d1 v1 ...
2020-9-1 17:26 - Dongzishu - Stata专版
coefplot
17 个回复 - 16984 次查看
我用coefplot把平行趋势检验的系数做成图,但是我在做检验的时候,开始干预前的那个时间点是没有带入的,以防止全部点带入后有共线性。可是我作图的时候需要体现这个基准点,请问怎么能让图里带上这个点呢。附图是网 ...
2018-11-24 23:47 - 杨小猴 - Stata专版
手把手教你做coefPlot图
1 个回复 - 1039 次查看
coefPlot图一般用于呈现回归系数及其对应的置信区间,便于展示和对比各回归系统的趋势情况,以及显著情况等,其通常用于各类回归影响关系研究之后,coefPlot图需要提供4列数据,项的名称,以及分别对应的回归系数值 ...
2023-9-19 11:21 - spssau - 数据分析与数据挖掘
ggplot2中如何对 个别 图例项 文本字体 加粗,谢谢!
1 个回复 - 923 次查看
请问在ggplot2中如何对 个别 图例项 文本字体 加粗,谢谢!
说明:有2个图例,对第2个图例的其中之一图例项的文本字体 加粗;
也安装了ggtext包。
fig1 + scale_color_manual(value = "blue", lables = "**图 ...
2023-5-24 12:14 - priss111 - R语言论坛
proc sgplot画个体折线图
2 个回复 - 558 次查看
data one;
input name $ value time $;
cards;
N1 33 T1
N1 45 T2
N1 54 T3
N2 34 T1
N2 38 T2
N2 44 T3
;
run;
proc sgplot data=one;
series x=time y=value /group=name;
run;
怎样用proc ...
2023-9-18 20:21 - qk83792561 - SAS专版
ggplot日期格式的显示
7 个回复 - 464 次查看
用ggline做的图,x轴的日期标签如何显示全啊(只显示了3个,实际是7个点),ggline(weight230829, x = "日期", y = "体重", ylab="体重(g)", add = c("mean_sd"),linetype = "组别",
color = "组别",s ...
2023-9-6 14:43 - edward1212 - R语言论坛
SAS生存时间图-Lifetest Vs SGPlot
4 个回复 - 449 次查看
proc lifetest自动生成的生存时间图(如下),一般就够用了,
但是proc lifetest生成的数据集(Survivalplot十HomTests)简单处理一下,使用proc sgplot可以更自由,更自主的DIY图形(如下),
Sample Code:
...
2023-8-24 12:49 - AngleeZZ - SAS专版
SAS趣图分享-sgplot+scatter五星红旗?
1 个回复 - 295 次查看
五星红旗?sgplot+scatter轻松实现参考代码data star;
x1=0.5;y1=4.0;output;
x2=1.5;y2=3.0;output;
x2=2.0;y2=3.5;output;
x2=2.0;y2=4.0;output;
x2=1.5;y2=4.5;output;
run;
ods graphics/width=500 he ...
2023-8-25 08:15 - AngleeZZ - SAS专版
R语言 ggplot2绘图辅助包ggplotAssist
1 个回复 - 449 次查看
#安装代码命令,先安装devtools包,才能正常运行下面的安装命令
devtools::instal1_github("cardiomoon/ggplotAssist")
安装完成后,重启R studio程序,在addings中可以看到ggplotAssist
随后导入需要绘图的数据 ...
2023-8-22 08:48 - xiao_zhe - R语言论坛
ggplot2学习9
0 个回复 - 358 次查看
Often you want to label existing points on the plot. You don’t want the
text to overlap with the points (or bars etc), so it’s useful to offset the text
a little. The nudge x and nudge y parameter ...
2023-8-5 15:27 - wxxstar21 - R语言论坛
ggplot2学习8
0 个回复 - 286 次查看
It is useful to think about the purpose of each layer before it is added. In
general, there are three purposes for a layer:
• To display the data. We plot the raw data for many reasons, relyin ...
2023-8-5 15:10 - wxxstar21 - R语言论坛
ggplot2学习7
0 个回复 - 283 次查看
Quick Plots
In some cases, you will want to create a quick plot with a minimum of typing.
In these cases you may prefer to use qplot() over ggplot(). qplot() lets you
define a plot in a single call ...
2023-8-5 11:07 - wxxstar21 - R语言论坛
ggplot2学习6
0 个回复 - 283 次查看
Time Series with Line and Path Plots
Line and path plots are typically used for time series data. Line plots join the
points from left to right, while path plots join them in the order that they
ap ...
2023-8-5 11:01 - wxxstar21 - R语言论坛
ggplot2学习5
0 个回复 - 283 次查看
Plot Geoms
You might guess that by substituting geom point() for a different geom function, you’d get a different type of plot. That’s a great guess! In the following
sections, you’ll learn about ...
2023-8-5 10:59 - wxxstar21 - R语言论坛
ggplot2学习4
0 个回复 - 252 次查看
Facetting
Another technique for displaying additional categorical variables on a plot
is facetting. Facetting creates tables of graphics by splitting the data into
subsets and displaying the same g ...
2023-8-5 10:50 - wxxstar21 - R语言论坛
ggplot2学习3
0 个回复 - 230 次查看
Different types of aesthetic attributes work better with different types of
variables. For example, colour and shape work well with categorical variables,
while size works well for continuous variab ...
2023-8-5 10:46 - wxxstar21 - R语言论坛
ggplot2学习3
0 个回复 - 251 次查看
Colour, Size, Shape and Other Aesthetic Attributes
To add additional variables to a plot, we can use other aesthetics like colour,
shape, and size (NB: while I use British spelling throughout this b ...
2023-8-5 10:40 - wxxstar21 - R语言论坛
ggplot2学习2
0 个回复 - 258 次查看
Every ggplot2 plot has three key components:
1. data,
2. A set of aesthetic mappings between variables in the data and visual
properties, and
3. At least one layer which describes how to render ea ...
2023-8-5 10:32 - wxxstar21 - R语言论坛
ggplot2学习1
0 个回复 - 299 次查看
we’ll mostly use one data set that’s bundled with ggplot2:
mpg. It includes information about the fuel economy of popular car models
in 1999 and 2008, collected by the US Environmental Protection ...
2023-8-5 10:28 - wxxstar21 - R语言论坛
门槛作图命令matplot找不到了,求指点
4 个回复 - 3148 次查看
各位大神好,我一直用stata15的matplot命令给门槛面板作图,但是今天突然发现这命令没有了,你们的stata还有matplot吗?你们用的都是什么版本的stata,现在门槛作图都是用什么命令啊?求指点,在线等,万分感谢!!! ...
2020-5-31 11:16 - jj_dudu - Stata专版
森林图forestplot
2 个回复 - 3986 次查看
forestplot(labeltext = as.matrix(rs_forest[,1:4]),mean = rs_forest$V5,lower = rs_forest$V6,upper = rs_forest$V7,
is.summary=c(F,F,T,T,F,T,T,F,T,T,T,T,F,T,T),zero = 1,boxsize = 0.4,lineheig ...
2018-9-7 10:22 - handsomexuye - R语言论坛
event_plot画图命令如何让被遮住的折线上移一层
0 个回复 - 566 次查看
现在的代码是:
. event_plot, default_look graph_opt(xtitle("periods since the event") ///
> ytitle("Average causal effect") title("Borusyak et al. (2021) imputation estimator") ///
> xlabel(-5(1 ...
2023-6-2 20:52 - gualida - Stata专版
标准化系数该如何利用coefplot命令作图?
8 个回复 - 2907 次查看
coefplot命令可以将回归系数及置信区间绘制在图中,更直观地展示回归结果。但同时为了方便比较系数之间的大小,文献中更多地展示了标准化之后的系数图,如下。如果回归是ols,则使用coefplot命令展示标准化的系数图非 ...
2023-4-10 23:40 - 葱葱饼干 - Stata专版
用coefplot时画图,图例显示不出来,求帮助
10 个回复 - 12834 次查看
请问上图中为什么图例显示是一个点呀???
作图的命令如下
coefplot, drop(_cons) recast(connected) vertical ciopts(recast(rcap)lcol(black)) ///
lpattern(solild) mcolor(black) lcolor(bla ...
2019-2-21 09:53 - 经济学小小白 - Stata专版