Rmarkdown无法获取default.html(错误61)

时间:2018-09-26 16:58:21

标签: r rstudio r-markdown

我更新到R 3.5,从那时起,每当我尝试使用Rmarkdown编织HTML文件时,都会出现错误。

private Map<String, Set<Square>> populateZuloSquare0(List<Square> squares) {
    if (squares == null || squares.isEmpty()) {
        return emptyMap();
    }
    return squares.stream()
        .filter(square -> logMismatch(square, !square.getZuloCodes().isEmpty()))
        .flatMap(square -> square.getZuloCodes().stream()
            .map(code -> new AbstractMap.SimpleEntry<>(code, square)))
        .collect(Collectors.collectingAndThen(
            Collectors.groupingBy(Map.Entry::getKey,
                Collectors.mapping(Map.Entry::getValue, Collectors.toSet())),
            Collections::unmodifiableMap));
}
private static boolean logMismatch(Square square, boolean match) {
    if(!match) LOG("Ignored {}", square.id);
    return match;
}

Image version)。

有人知道如何解决此错误吗?我尝试完全删除并重新安装R,RStudio和Rmarkdown并得到相同的结果。我没有使用服务器,并且HTML文件是独立的。

我没主意了。

0 个答案:

没有答案