我正在 R 中编写一个函数来绘制图形。我需要使用 C++ 程序调用这个函数。
R 程序 (script.R)
genplot<-function(x,y,outfile)
{
plot(outfile)
plot(x,y)
dev.off()
}
C++ 程序 (Run.cpp)
#include <iostream.h>
using namespace std;
int main()
{
int x[] = (1,2,3,4,5);
int y[] = (2,3,4,1,3);
genplot(x,y); #need to call r function by passing these 2 variables.
return 0;
}