所以我用Visual Studio Code制作了一个自包含的项目版本。 EXE正在开发ubuntu和windows,但无法在os-x上运行。
我使用简单的set.seed(591)
xx1 <- rnorm(20, mean = 3, sd = 3.6)
xx2 <- rpois(40, lambda = 3.5)
xx3 <- rchisq(31, df = 5, ncp = 0)
df <- data.frame(xx = c(xx1,xx2,xx3),
type=c(rep(1,length(xx1)),rep(2,length(xx2)),rep(3,length(xx3))) )
df$type <- factor(df$type, labels=c("Group-1", "Group-2", "Group-3"))
library(lattice)
bwplot(xx~type, data=df)
来存储一些数据。 os-x版本发生的错误是它无法找到data.json
的正确路径。我收到这条消息:
data.json
这不是我存储release或data.json的地方。我将它存储在项目的根目录中。好像应用程序正在我的系统根目录中查找json文件。我该如何解决这个问题?
我的XML csproj:
Could not find file '/Users/User/data.json'.