-
Notifications
You must be signed in to change notification settings - Fork 0
/
command_line.R
50 lines (39 loc) · 1.02 KB
/
command_line.R
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
# Sourcing ----------------------------------------------------------------
rm(list = ls())
library(Vpalmr)
# Initializing ------------------------------------------------------------
# ntrees= 0
ntrees= NULL
nleaves= 45
map= 47
plant_dist= 9.2
# Import all data and fit the models:
Palm_Param = compute_archi(
map = map, data_path = "0-data/Archi",
write_path = "../VPalm_Architecture/models_MAP_59.RData"
)
# Palm_Param= readRDS(file = "../VPalm_Architecture/models_MAP_47.RData")
scene = make_scene(
data = Palm_Param, ntrees = ntrees, nleaves = nleaves,
path = "3-Outputs",
AMAPStudio = getwd(),
plant_dist = plant_dist
)
scene = make_scene(
data = Palm_Param, ntrees = NULL, nleaves = 45,
path = "../VPalm_Architecture/test", Progeny = "DA1",
AMAPStudio = getwd(), seed = NULL,
plant_dist = plant_dist
)
map= 47
plant_dist= 9.2
plot_design= NULL
overwrite= T
seed = 1:4
progress= NULL
ntrees = 4
data = Palm_Param
nleaves = 45
path = "3-Outputs/Tests"
Progeny = "DA1"
AMAPStudio = getwd()