cut_tour(TSP)
cut_tour()所属R语言包:TSP
Cut a tour to form a path
切旅游形成的路径
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Cuts a tour at a specified city to form a path.
剪切旅游在指定的城市形成的路径。
用法----------Usage----------
cut_tour(x, cut, exclude_cut = TRUE)
参数----------Arguments----------
参数:x
an object of class TOUR.
对象类TOUR。
参数:cut
the index or label of the city to cut the tour.
指数或标签的城市,以削减游览。
参数:exclude_cut
exclude the city where we cut? If FALSE, the city at the cut is included in the path as the first city.
排除城市,我们切吗? FALSE如果,切的城市中包含的路径中的第一个城市。
参见----------See Also----------
TOUR.
TOUR。
实例----------Examples----------
data("USCA50")
tsp <- insert_dummy(USCA50, label = "cut")
tour <- solve_TSP(tsp)
## cut tour into path at the dummy city[#切割旅游路径的虚拟城市]
path <- cut_tour(tour, "cut")
labels(path)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|