I am trying to use Dataframes in my java project. I found a library on the internet: https://github.com/cardillo/joinery. but I dont know how to add the folder to my directory and use dataframes in my project. please advise. I am new to java.
            Asked
            
        
        
            Active
            
        
            Viewed 116 times
        
    1 Answers
1
            You can download the jar from here and add it to the Java project's build path.
Or if your project is maven based Java project then add the dependency in pom.xml file
<dependency>
<groupId>joinery</groupId>
<artifactId>joinery-dataframe</artifactId>
<version>1.8</version>
</dependency>
For Gradle Based Java project add in build.gradle:
dependencies{
compile "com.google.guava:guava:$guavaVersion"
}
        Yug Singh
        
- 3,112
 - 5
 - 27
 - 52