MVN

io.github.yufeixuan : DataFrame

Maven & Gradle

Jan 26, 2022
1 stars

DataFrame · 1. java版dataframe数据处理框架,修复N多bug 2. 增加删除指定行dropRow 3. 当dataframe对象为空值(即创建对象后没有通过append赋值),删除指定列时会报错,已修复 4. 修复drop的时候列名不存在的问题 6. 优化joinOn 7. 优化add方法 8. 增加clone方法 9. 增加getIndex、getBlocks方法 10. 增加setBlocks方法

<dependency>
    <groupId>io.github.yufeixuan</groupId>
    <artifactId>DataFrame</artifactId>
    <version>1.0.12</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.github.yufeixuan : DataFrame to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.12

All Versions

Choose a version of io.github.yufeixuan : DataFrame to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
DataFrame-1.0.12
DataFrame-1.0.11
DataFrame-1.0.10
DataFrame-1.0.9
DataFrame-1.0.8
DataFrame-1.0.7
DataFrame-1.0.6
DataFrame-1.0.5
DataFrame-1.0.4
DataFrame-1.0.3
DataFrame-1.0.2
DataFrame-1.0.1
DataFrame-1.0.0

How to add a dependency to Maven

Add the following io.github.yufeixuan : DataFrame maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.github.yufeixuan</groupId>
    <artifactId>DataFrame</artifactId>
    <version>1.0.12</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.github.yufeixuan : DataFrame gradle dependency to your build.gradle file:

implementation 'io.github.yufeixuan:DataFrame:1.0.12'

Gradle Kotlin DSL: Add the following io.github.yufeixuan : DataFrame gradle kotlin dependency to your build.gradle.kts file:

implementation("io.github.yufeixuan:DataFrame:1.0.12")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.github.yufeixuan : DataFrame sbt scala dependency to your build.sbt file:

libraryDependencies += "io.github.yufeixuan" % "DataFrame" % "1.0.12"

Advertisement