-
Notifications
You must be signed in to change notification settings - Fork 0
/
weed-suppression.Rmd
667 lines (507 loc) · 24.8 KB
/
weed-suppression.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
---
title: "Evaluating effectiveness of controlling little seed canary grass by using chemical herbicides and allelopathic integration"
author: c("[email protected]", "[email protected]")
date: "2023-02-21"
output:
md_document:
variant: markdown_github
html_document:
toc: yes
toc_depth: 3
toc_float:
collapsed: no
smooth_scroll: no
pdf_document:
toc: yes
toc_depth: '3'
---
# Evaluating effectiveness of controlling little seed canary grass by using chemical herbicides and allelopathic synthetic community
**Note by gaoch**:
- Knit the Rmd document to see the results.
- Project files are now be organized as a Git repository. The remote server address is located at [Gitee](https://gitee.com/soilmicro/weed-suppression) or [GitHub](https://github.com/gaospecial/weed-suppression). If you know Git, you may clone it from that remote repository after joining in the soilmicro organization/company [Only Gitee Required].
From:
> Integrated application of synthetic community reduces consumption of herbicide in field weed control,
> by Amina Hadayat, Zahir Ahmad Zahir, Peng Cai, Chun-Hui Gao, submitted
```{r setup, include=FALSE}
knitr::opts_chunk$set(
fig.width = 8,
fig.asp=0.8,
message = F,
dpi = 300,
collapse = TRUE,
comment = "#>",
fig.path = "figures/Figure-",
fig.align = "center",
out.width = "70%"
)
```
```{r eval=FALSE, include=FALSE}
# Autogeneration of png/pdf/pptx format output for figures.
knitr::opts_chunk$set(
dev = c("png", "pdf", "pptx"),
fig.ext = c("png", "pdf", "pptx")
)
# a pptx device
pptx = function(file = knitr::fig_path(".pptx"), width, height){
export::graph2ppt(file = file, width = width, height = height)
}
# add opts_hooks
knitr::opts_hooks$set(dev = function(options){
if (length(options$dev) > 1){
x = paste0("[", options$dev, "](", knitr::fig_path(options$dev), ")",
collapse = " | ")
options$fig.cap = paste(options$fig.cap, x, sep = " ")
}
options
})
```
# Load packages
```{r packages, warning=FALSE}
library(tidyverse)
library(cowplot)
library(ggpubr)
library(pheatmap)
library(RColorBrewer)
library(vegan)
library(reshape2)
library(magrittr)
library(ggplot2)
theme_set(theme_bw())
```
To enable reproducible study, we provided the raw-data and source codes for analysis and generating figures.
# Data processsing
Raw data were stored in the `data` folder. It mainly comes from two experiments: one from growth room study, and the other is field experiment. The raw data is provided as in formatted form.
```{r}
weed_suppression <- read_csv("data/weed suppression.csv")
wheat_promotion <- read_csv("data/wheat promotion.csv")
weed_infestation <- read_csv("data/weed infestation.csv")
infested_wheat <- read_csv("data/infested wheat.csv")
head(weed_suppression) # suppress weed growth by herbicide and SynComs
head(wheat_promotion) # SynComs promote wheat growth
head(weed_infestation) # field trail of weed suppression
head(infested_wheat) # field trail of wheat promotion
```
The columns are:
- `herbicide_dose`: herbicide_doses, indicating the name of two different chemical herbicides (Atlantis and Axial) at 25 and 50% of recommended doses: i.e. "Herbicide control", "Atlantis 25%", "Atlantis 50%", "Axial 25%", "Axial 50%".
- `Inoculation`: Inoculation indicating the combinations of four different Pseudomonas strains (B11, T19, T24, T75) collected from Soil microbiology biochemistry laboratory, University of Agriculture Faisalabad. "C1", "C2", "C3", "C4" represent the Pseudomonas strain combinations such as C1 (B11 x T75), C2 (T19 x T24), C3 (B11 x T24 x T75) and C4 (B11 x T19 x T24 x T75).
- `treatments`: Under field condition nine treatments were planned in block plot for both weed infestation and infested wheat with weedy and wheat free control respectively, in order to evaluate the selected C4 combination along with Axial herbicide at four different recommended doses such as: 25, 50, 75, and 100% Axial with respective control treatments.
# Distribution of values
`weed_suppression` indicates the effect of SynComs and herbicides on the growth and physiology of *P. minor* under axenic condition. Nine parameters were obtained.
```{r}
par(mfrow=c(3,3))
hist(weed_suppression$seed_germination, main = "Seed germination")
hist(weed_suppression$SPAD_value, main = "SPAD value")
hist(weed_suppression$plant_height, main = "Plant height")
hist(weed_suppression$root_length, main = "Root length")
hist(weed_suppression$fresh_biomass, main = "Fresh biomass")
hist(weed_suppression$protein, main = "Protein")
hist(weed_suppression$chlorophyll_a, main = "Chlorophyll A")
hist(weed_suppression$chlorophyll_b, main = "Chlorophyll B")
hist(weed_suppression$caroteniod, main = "Caroteniod")
```
# A new graph
Disign a graph to show the results more clearly. This plot has three parts.
1. boxplot shows the value of data, and statistical results of comparision;
2. a dotplot shows the dose of herbicide;
3. another dotplot shows the applying inoculation.
* **seed germination rate of weed**
The less of seed germination rate of weed, the better of the suppression of a recipe.
```{r}
df = weed_suppression %>%
mutate(herbicide_dose = fct_rev(as_factor(herbicide_dose)),
Inoculation = fct_rev(as_factor(Inoculation))) %>%
group_by(herbicide_dose, Inoculation) %>%
mutate(group = factor(cur_group_id()), .before = 3)
df$group = fct_reorder(df$group, df$seed_germination)
symnum.args<-list(cutpoints= c(0, 0.01, 0.05, Inf),
symbols = c("**","*","ns"))
# find the group id by groups
groups = distinct(df, herbicide_dose, Inoculation, group) %>%
filter(herbicide_dose == "Herbicide control", Inoculation == "Control")
ref_group = groups$group %>% as.character()
# boxplot
p1 = df %>%
ggplot(aes(group, seed_germination)) +
geom_boxplot(outlier.shape = NA) +
stat_compare_means(ref.group = ref_group,
method = "t.test",
hide.ns = FALSE,
label = "p.signif",
symnum.args = symnum.args) +
# geom_jitter(width = 0.01) +
theme(axis.title.x = element_blank(),
axis.text.x = element_blank(),
axis.ticks.x = element_blank())
# the herbicide dose
p2 = df %>%
ggplot(aes(group, herbicide_dose)) +
geom_point(size = 3, shape = 15) +
theme(axis.title.x = element_blank(),
axis.text.x = element_blank(),
axis.ticks.x = element_blank(),
plot.margin = margin(t = 0, r = 0, b = 0, l = 0, unit = "pt"))
# the inoculation
p3 = df %>%
ggplot(aes(group, Inoculation)) +
geom_point(size = 3, shape = 15) +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank(),
plot.margin = margin(t = 0, r = 0, b = 0, l = 0, unit = "pt"))
aplot::plot_list(p1,p2,p3, ncol = 1, heights = c(1,.2,.2))
```
Control is located on the most right side, so that all the combinations of herbicide and SynComs have better effect in suppressing weed seed germination. Among them, who have the best performance are Axial 25%-50% plus C1/C3/C4.
Now, every parameter can generate a similar plot.
```{r}
# reuse code with a function
plot_recipe_effect = function(df, value){
df$group = fct_reorder(df$group, df[[value]])
# symnum.args
symnum.args<-list(cutpoints= c(0, 0.01, 0.05, Inf),
symbols = c("**","*","ns"))
# find the group id by groups
groups = distinct(df, herbicide_dose, Inoculation, group) %>%
filter(herbicide_dose == "Herbicide control", Inoculation == "Control")
ref_group = groups$group %>% as.character()
p1 = df %>%
ggplot(aes_string("group", value)) +
geom_boxplot(outlier.shape = NA) +
stat_compare_means(ref.group = ref_group,
method = "t.test",
hide.ns = FALSE,
label = "p.signif",
symnum.args = symnum.args) +
# geom_jitter(width = 0.01) +
theme(axis.title.x = element_blank(),
axis.text.x = element_blank(),
axis.ticks.x = element_blank())
p2 = df %>%
ggplot(aes(group, herbicide_dose)) +
geom_point(size = 3, shape = 15) +
theme(axis.title.x = element_blank(),
axis.text.x = element_blank(),
axis.ticks.x = element_blank(),
plot.margin = margin(t = 0, r = 0, b = 0, l = 0, unit = "pt"))
p3 = df %>%
ggplot(aes(group, Inoculation)) +
geom_point(size = 3, shape = 15) +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank(),
plot.margin = margin(t = 0, r = 0, b = 0, l = 0, unit = "pt"))
# combined graph
aplot::plot_list(p1,p2,p3, ncol = 1, heights = c(1,.2,.2))
}
```
# Weed control by using the combination of herbicides and synthetic community
Firstly, we investigated the influence of AB combinations and chemical herbicides on *P. minor* growth and phenological parameter reduction. The experiments were carried out in green house, and only weed were planted.
## Weed growth
### Seed germination
```{r}
plot_recipe_effect(df, value = "seed_germination")
```
### Plant height
```{r}
plot_recipe_effect(df, value = "plant_height")
```
### Root length
```{r}
plot_recipe_effect(df, value = "root_length")
```
### Fresh biomass
```{r}
plot_recipe_effect(df, value = "fresh_biomass")
```
### Protein content
```{r}
plot_recipe_effect(df, value = "protein")
```
## Weed pigments
Plants contain several different pigments, including chlorophylls, carotenoids, and flavonoids. Chlorophylls are the primary pigments responsible for the green color of plants and are essential for photosynthesis. Carotenoids, which include beta-carotene, lycopene, lutein, and zeaxanthin, are responsible for the yellow, orange, and red colors of many fruits and vegetables, and also serve as antioxidants. Flavonoids, which include anthocyanins, flavonols, and flavones, are responsible for the red, blue, and purple colors of many fruits and flowers, and also play a role in plant defense against environmental stresses.
### SPAD value of weed
SPAD value is a measure provided by the SPAD-502Plus, which is a portable, non-destructive measuring device for the chlorophyll content of leaves.
```{r echo=FALSE, fig.cap="Product of SPAD-502+"}
knitr::include_graphics("https://vnote-1251564393.cos.ap-chengdu.myqcloud.com/20230326110719.png")
```
```{r}
plot_recipe_effect(df, value = "SPAD_value")
```
### Chlorophyll A
There are several types of chlorophyll, including chlorophyll a, chlorophyll b, chlorophyll c, chlorophyll d, and chlorophyll e, each with their own unique molecular structure and light absorption properties. Chlorophyll is responsible for giving plants their green color, and it is also used as a natural food coloring agent and in some medicinal and industrial applications.
Chlorophyll a is the primary pigment involved in photosynthesis and is found in all photosynthetic organisms, including plants, algae, and cyanobacteria. It absorbs light most efficiently at wavelengths of 430-660 nm (blue and red light), and it plays a critical role in the initial stages of photosynthesis by absorbing light and passing on the energy to other molecules.
```{r}
plot_recipe_effect(df, value = "chlorophyll_a")
```
### Chlorophll B
Chlorophyll b, on the other hand, is an accessory pigment that is found only in higher plants and green algae. It absorbs light most efficiently at wavelengths of 450-650 nm (blue and orange light) and transfers this energy to chlorophyll a. Chlorophyll b also helps to broaden the spectrum of light that can be absorbed by the plant, allowing it to capture more energy from the sun and carry out photosynthesis more efficiently.
```{r}
plot_recipe_effect(df, value = "chlorophyll_b")
```
### Caroteniod
Carotenoids are a group of natural pigments that are found in many plants, algae, and some bacteria. They are responsible for the yellow, orange, and red colors of many fruits and vegetables, as well as the bright colors of many flowers. Carotenoids are important antioxidants that help protect plants and other organisms from damage caused by harmful molecules known as free radicals. In addition to their role in providing color to plants and other organisms, carotenoids also have important health benefits for humans, including promoting eye health, supporting the immune system, and reducing the risk of certain chronic diseases. Some common carotenoids include beta-carotene, lycopene, lutein, and zeaxanthin.
```{r}
plot_recipe_effect(df, value = "caroteniod")
```
# Wheat growth promotion by SynComs
```{r}
wheat_promotion
```
## ANOVA analysis
```{r}
compare_means(seed_germination~Inoculations,data = wheat_promotion,ref.group="control",
method = "t.test")
compare_means(plant_height~Inoculations,data = wheat_promotion,method = "anova")
compare_means(Root_length~Inoculations,data = wheat_promotion,ref.group="control",
method = "t.test")
compare_means(fresh_biomass~Inoculations,data = wheat_promotion,method = "anova")
compare_means(SPAD_value~Inoculations,data = wheat_promotion,ref.group="control",
method = "t.test")
compare_means(chlorophyll_a~Inoculations,data = wheat_promotion,ref.group="control",
method = "t.test")
compare_means(chlorophyll_b~Inoculations,data = wheat_promotion,ref.group="control",
method = "t.test")
compare_means(carotenoid~Inoculations,data = wheat_promotion,ref.group="control",
method = "t.test")
compare_means(protein~Inoculations,data = wheat_promotion,ref.group="control",
method = "t.test")
```
Whether strains combinations have ability to enhance the growth of wheat or not.
```{r}
cols <- setdiff(names(wheat_promotion), 'Inoculations')
y_labels <- c("seed germination (%)","plant height (cm)", "root length (cm)","fresh biomass (g)","SPAD value","chlorophyll a (ppm)","chlorophyll b (ppm)","carotenoid (ppm)","protein (ppm)")
#symnum.args to adjust p-value
symnum.args<-list(cutpoints= c(0, 0.01, 0.05, Inf),
symbols = c("**","*","ns"))
list_plots = Map(function(x, y) {
ggboxplot(data = wheat_promotion, x = "Inoculations", y = x,
ylab = y, xlab = "Inoculations",
add = "jitter")+
stat_compare_means(label = "p.signif",
method = "t.test",
ref.group = "control",
symnum.args = symnum.args)+
rotate_x_text(angle = 40)+
labs(x="") +
theme(legend.position = "right",
legend.title = element_text(color="black",size = 10,
face = "bold"),
legend.text = element_text(color = "black",size = 8),
plot.margin = margin(t = 2, r = 0, b = 0, l = 2, unit = "pt")) +
scale_y_continuous(expand = expansion(0.2))
}, cols, y_labels)
cowplot::plot_grid(plotlist = list_plots[1:3],
labels = "AUTO",
ncol = 2)
```
C4 has the best performance in increasing seed germination, plant height, root length and fresh biomass of wheat, followed by C3 or C1.
```{r}
cowplot::plot_grid(plotlist = list_plots[6:9],
labels = "AUTO",
align = "hv")
```
# Weed infestation
```{r}
compare_means(total_weed_density~treatments,data = weed_infestation,
method = "anova")
compare_means(no_of_native_weeds~treatments,data = weed_infestation,
method = "anova")
compare_means(shoot_length~treatments,data = weed_infestation,
method = "anova")
compare_means(SPAD_value~treatments,data = weed_infestation,
method = "anova")
compare_means(grain_yield~treatments,data = weed_infestation,
method = "anova")
compare_means(straw_yield~treatments,data = weed_infestation,
method = "anova")
compare_means(photosynthetic_rate~treatments,data = weed_infestation,
method = "anova")
compare_means(transpiration_rate~treatments,data = weed_infestation,
method = "anova")
compare_means(stomatal_conductance~treatments,data =weed_infestation,
method = "anova")
```
In subsequent comparisons, we aimed to analysis whether the presence of C4 can enhance the ability to a herbicide Axial.
> Axial is a brand name of a herbicide produced by the company BASF. The active ingredient in Axial is pinoxaden, which is a selective herbicide used to control grass weeds in a variety of crops, including cereals, rice, and grass seed crops. Axial works by inhibiting the growth of the targeted grass weeds, which eventually leads to their death. It is typically applied to crops as a post-emergence herbicide, meaning it is sprayed directly onto the weeds after they have emerged from the soil. As with all herbicides, it is important to follow the label instructions carefully and use Axial only as directed to ensure effective control of weeds and to minimize any potential risks to humans, animals, and the environment.
Before start, we edited the treatments and added a new column `has_c4` in this data frame. The reason to do this is that we know that the using of herbicide and C4 can suppress weed growth significantly. Now that the question is whether C4 can play an important role.
```{r}
weed_infestation %<>%
mutate(has_c4 = as_factor(if_else(str_detect(treatments, "c4"), "with C4", "without C4"))) %>%
mutate(treatments = factor(
treatments,
levels = c("weedy control",
"wheat+weed 100% axial control",
"wheat+weed 100% axial control+c4 inoculation",
"wheat+weed 75% axial control",
"wheat+weed 75% axial control+c4 inoculation",
"wheat+weed 50% axial control",
"wheat+weed 50% axial control+c4 inoculation",
"wheat+weed 25% axial control",
"wheat+weed 25% axial control+c4 inoculation"),
labels = c("wild",
"100% Axial",
"100% Axial",
"75% Axial",
"75% Axial",
"50% Axial",
"50% Axial",
"25% Axial",
"25% Axial")))
```
**Question**:
- Is the grain yield in this data frame from weed or wheat?
```{r}
cols <- setdiff(names(weed_infestation),c('treatments',"has_c4"))
y_labels <- c("weed density m-2",
"no of weeds (%)",
"shoot length (cm)",
"SPAD value",
"grain yield (t ha-1)",
"straw yield (t ha-1)",
"photosynthetic rate (µmol m-2 s-1) ",
"transpiration rate (µmol m-2 s-1)",
"stomatal conductance (mmol m-2 s-1)")
my_plots = Map(function(x, y) {
ggboxplot(data = weed_infestation, x = "treatments", y = x,
legend ="none",
color = "has_c4",
ylab = y, xlab = "treatments",
bxp.errorbar = FALSE,
bxp.errorbar.width = 0.4,
palette = "npg",
notch = FALSE,
add = "jitter",
repel = TRUE)+
stat_compare_means(aes(group = has_c4),
label = "p.signif",
method = "t.test")+
theme(legend.position = "top",
legend.text = element_text(face = "italic"),
legend.title = element_blank(),
axis.text.x = element_text(angle = 30, hjust = 1,vjust = 1)) +
scale_y_continuous(expand = expansion(0.1, 0))
}, cols, y_labels)
```
## Weed growth
In this figure, why using 25% or 50% Axial have less total weed density when compare with 75% or 100% Axial? Similar results were also found in B and C.
```{r}
cowplot::plot_grid(plotlist = my_plots[c(1,3,5)],
labels = "AUTO",
ncol = 2)
```
## Weed bioactivity (respiration and photosynthesis)
Are these parameters come from weed plant?
```{r}
cowplot::plot_grid(plotlist = my_plots[c(4,6:9)],
labels = "AUTO")
```
# The growth of wheat infested by weed
Could you explain the setting of weed free control in this data frame?
```{r}
infested_wheat
```
## ANOVA analysis
```{r}
compare_means(shoot_length~treatments,data = infested_wheat,method = "anova")
compare_means(SPAD_value~treatments,data = infested_wheat,method = "anova")
compare_means(no_of_tillers_per_plant~treatments,data = infested_wheat,method = "anova")
compare_means(biological_yield~treatments,data = infested_wheat,method = "anova")
compare_means(grain_yield~treatments,data = infested_wheat,method = "anova")
compare_means(straw_yield~treatments,data = infested_wheat,method = "anova")
compare_means(photosynthetic_rate~treatments,data = infested_wheat,method = "anova")
compare_means(transpiration_rate~treatments,data = infested_wheat,method = "anova")
compare_means(stomatal_conductance~treatments,data = infested_wheat,method = "anova")
```
Simplifying the group names.
```{r}
infested_wheat %<>%
mutate(has_c4 = as_factor(if_else(str_detect(treatments, "c4"), "with C4", "without C4")),
.before = 2) %>%
mutate(treatments = factor(
treatments,
levels = c("weed free control",
"wheat+weed 100% axial control",
"wheat+weed 100% axial control+c4 inoculation",
"wheat+weed 75% axial control",
"wheat+weed 75% axial control+c4 inoculation",
"wheat+weed 50% axial control",
"wheat+weed 50% axial control+c4 inoculation",
"wheat+weed 25% axial control",
"wheat+weed 25% axial control+c4 inoculation"),
labels = c("weed-free",
"100% Axial",
"100% Axial",
"75% Axial",
"75% Axial",
"50% Axial",
"50% Axial",
"25% Axial",
"25% Axial")))
infested_wheat
```
```{r}
cols <- setdiff(names(infested_wheat),c('treatments',"has_c4"))
y_labels <- c("shoot length (cm)",
"SPAD value",
"no of tillers plant-1",
"biological yield",
"grain yield (t ha-1)",
"straw yield (t ha-1)",
"photosynthetic rate (µmol m-2 s-1) ",
"transpiration rate (µmol m-2 s-1)",
"stomatal conductance (mmol m-2 s-1)")
Map(function(col_name, y_label) {
ypos = infested_wheat %>%
group_by(treatments) %>%
summarise(yposition = max(get(col_name)) * 1.01)
stat_by_group = compare_means(as.formula(paste(col_name, "~ has_c4")),
data = infested_wheat,
method = "t.test",
group.by = "treatments") %>%
mutate(xpos = as.numeric(get("treatments"))) %>%
mutate(xmin = xpos - 0.2,
xmax = xpos + 0.2) %>%
# filter(p < 0.05) %>%
left_join(ypos)
ggboxplot(data = infested_wheat,
x = "treatments",
y = col_name,
ylab = y_label,
xlab = "treatments",
color = "has_c4",
bxp.errorbar = FALSE,
bxp.errorbar.width = 0.4,
notch = FALSE,
palette = "npg",
add = "jitter") +
geom_signif(xmin = stat_by_group$xmin, xmax = stat_by_group$xmax,
annotation = stat_by_group$p.signif,
y_position = stat_by_group$yposition,
tip_length = 0) +
theme(legend.position = "top",
legend.text = element_text(face = "italic"),
legend.title = element_blank(),
axis.text.x = element_text(angle = 30, hjust = 1,vjust = 1)) +
scale_y_continuous(expand = expansion(0.1, 0))
}, cols, y_labels) -> list_of_plots
```
## Wheat growth
Firstly, similar questions can be raised as I did in discussing the weed_infestation results. On this basis, the conclusions are:
- The application of herbicide also have significant suppressing effect on wheat growth;
- The addition of C4 SynComs neutralize such a toxic effect.
- 75% of Axial and C4 has the best performance in maintaining wheat growth. In such condition, all the four parameters showed in this figure are comparable to the weed-free control.
```{r}
cowplot::plot_grid(plotlist = list_of_plots[c(1,4:6)],
labels = "AUTO",
ncol = 2)
```
## Wheat bioactivity
```{r}
cowplot::plot_grid(plotlist = list_of_plots[c(2,7:9)],
labels = "AUTO",
ncol = 2)
```
# Conclusion
The main questions of this study are:
1. Whether we can use the combination of herbicide and SynComs to achieve environment-friendly weed control?
2. If yes, how could we find the best solution, i. e. the recipe for the best? The best solution has its application value. It can be directly used to improve agricultural production.
From the data showed on the above, we now can found:
1. Yes, we can achieve a better control of weed in wheat field with both herbicide and bacteria communities. The addition of bacteria community can not only enhance the suppression effect of herbicide, but also promote the growth of wheat.
2. While combining the herbicide and bacteria community, using 75% or 50% dose of Axial and C4 is sufficient in inhibiting weed growth.