perl中的以下代码段之间有什么技术差异吗?他们的行为似乎是一样的
my $str = "A cat is red";
if($str =~ /cat/) {
print "Matches\n";
}
vs
my $str = "A cat is red";
if($str =~ m/cat/) {
print "Matches\n";
}
这段代码的不同之处在于第3行中的"m“,为什么有人会省略或不省略"m”呢?
我有一个二维数据集(例如x和y列)。我使用下面的功能来绘制一个QQ-绘图的这些数据.
# Creating a toy data for presentation
df = cbind(x = c(1,5,8,2,9,6,1,7,12), y = c(1,4,10,1,6,5,2,1,32))
# Plotting the QQ-plot
df_qq = as.data.frame(qqplot(df[,1], df[,2], plot.it=FALSE))
ggplot(df_qq) +
geom_point(aes(x=x, y=y), size = 2) +
ge