我有一个简单的问题,tidy()R 中的函数不起作用。我已经安装了 tidyverse 并加载了library(tidyverse). 但是我收到以下错误消息:
Error in tidy(fit1b) : could not find function "tidy"
Run Code Online (Sandbox Code Playgroud)
加载软件包时(仅“lfe”和“tidyverse”软件包),我还会遇到以下冲突,但我不确定它们是否导致了问题:
x tidyr::expand() masks Matrix::expand()
x dplyr::filter() masks stats::filter()
x dplyr::lag() masks stats::lag()
x tidyr::pack() masks Matrix::pack()
x tidyr::unpack() masks Matrix::unpack()
Run Code Online (Sandbox Code Playgroud) 我创建了一个名为index.php的文件,在同一文件夹index.php中有一个名为"includes"的文件夹.里面是两个php文件head.php和header.php.问题是这两个文件没有包含在index.php中.现在,我已经搜索了所有堆栈溢出,我似乎无法找到答案.
<!doctype html>
<html>
<?php include 'includes/head.php'; ?>
<body>
<?php include 'includes/header.php'; ?>
<div id="container">
<aside>
<div class="widget">
<h2>Widget Header</h2>
<div class="inner">
Widget contents
</div>
</div>
</aside>
</div>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)