[R]错误:节点堆栈上溢

	#创建画布
	png(filename = "test.png",
		width = 10,
		height = 10,
		units = "in",
		bg="white",		#背景颜色
		res = 300		# 分辨率
	)
	
	labrary(igraph)
	g<-graph.formula(1-+4, 1-+5,
	2-+4, 2-+5,
	3-+4, 3-+5
	)
	plot(g)

	#关闭画布
	dev.off()

  错误发生在plot一步。

  todo:解决

posted on 2024-02-07 19:08  ightar  阅读(15)  评论(0编辑  收藏  举报

导航