如何设置 UTF8 并通过 R 启动 H2O Flow UI?
How can I set UTF8 and start H2O Flow UI via R?
我想在 H2O Flow 中设置 UTF8 UI。
在终端中,我可以设置 UTF8 并打开 H2O Flow UI。
java -jar -Dfile.encoding=UTF-8 h2o.jar
但我通常使用 R。
如何设置 UTF8 并通过 R 启动 H2O Flow UI?
我尝试了以下方法。
options(encoding = "utf-8")
h2o.init()
和
h2o.init(extra_classpath = "-Dfile.encoding=UTF-8")
运行,但未设置 UTF8
将您的选项传递给 jvm_custom_args
参数,而不是 extra_classpath
,如 h2o.init(jvm_custom_args = "-Dfile.encoding=UTF-8")
我想在 H2O Flow 中设置 UTF8 UI。
在终端中,我可以设置 UTF8 并打开 H2O Flow UI。
java -jar -Dfile.encoding=UTF-8 h2o.jar
但我通常使用 R。 如何设置 UTF8 并通过 R 启动 H2O Flow UI?
我尝试了以下方法。
options(encoding = "utf-8")
h2o.init()
和
h2o.init(extra_classpath = "-Dfile.encoding=UTF-8")
运行,但未设置 UTF8
将您的选项传递给 jvm_custom_args
参数,而不是 extra_classpath
,如 h2o.init(jvm_custom_args = "-Dfile.encoding=UTF-8")