程序包org.apache.commons.math3.stat.regression不存在
时间: 2023-06-22 14:21:40 浏览: 210
org.apache.struts缺少所需包
这个错误提示意味着你的程序找不到Apache Commons Math3库中的回归统计包。这可能是因为你没有正确地导入Apache Commons Math3库或者你的项目中没有包含该库的jar文件。你需要先下载Apache Commons Math3并将其添加到你的项目中。如果你使用的是Maven,则可以在pom.xml文件中添加以下依赖项:
```
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.6.1</version>
</dependency>
```
如果你使用的是Gradle,则可以在build.gradle文件中添加以下依赖项:
```
implementation 'org.apache.commons:commons-math3:3.6.1'
```
添加完依赖项后,重新编译你的程序,这个错误应该就会消失了。
阅读全文