我正在尝试使用 Riverplot 包制作桑基图,并且想知道是否可以在图中添加标题和轴标签。为了简单起见,我将使用包中的一个示例河图:
nodes <- c( LETTERS[1:3] )
edges <- list( A= list( C= 10 ), B= list( C= 10 ) )
r <- makeRiver( nodes, edges, node_xpos= c( 1,1,2 ),
node_labels= c( A= "Node A", B= "Node B", C= "Node C" ),
node_styles= list( A= list( col= "yellow" )) )
plot( r , srt = 0)
我尝试使用 labs() 并收到以下错误消息:“二进制运算符的非数字参数”(这并不意外),但由于包本身似乎没有标题或轴标签的参数,我有点不知所措。任何帮助深表感谢!