我有一个数据有6列名为:DBF,BF,MM,TC,TA和DL。我用它们作为变量。并使用名为hardwood.content的列作为我的自变量。我在r。
中使用了以下代码printf("%d\n", 42)
library(ggplot2)
library(reshape2)
nrn <- melt(nrn, inrn.vars="hardwood.content")
ggplot(nrn, aes(hardwood.content,value)) +
geom_point() +
stat_smooth(method = "lm", se=FALSE,colour='black')+
facet_wrap(~variable)+
xlab("Hardwood content (%)")+ylab("Number of regeneration per ha")
图中应该有一条趋势线,但在我看来,没有趋势线显示出来。我不确定这个问题有什么问题。
这是我得到的数字。
数据是
hardwood DBF BF MM TC TA DL
0-25 15250 41206.8 5000 0 5000 0
0-25 8846.1 40517.2 0 0 0 0
0-25 10833.3 30967.7 20833.3 0 0 0
40-65 8750 14250 7884.6 42500 0 7727.2
40-65 0 20217.3 13043.4 0 0 8571.4
40-65 7500 12948.7 15000 25833.3 5000 8750
75-95 0 10000 13225.8 7500 5000 0
75-95 0 5000 10517.2 53461.5 5000 33095.2
75-95 5000 8666.6 7600 20000 5000 18965.5