julialangHow to create dataframes in JuliaLang?
Dataframes in JuliaLang can be created using the DataFrame type from the DataFrames package.
using DataFrames
# Create a dataframe with 3 columns
df = DataFrame(A = [1,2,3], B = [4,5,6], C = [7,8,9])
# Print the dataframe
println(df)
Output example
3×3 DataFrame
│ Row │ A │ B │ C │
│ │ Int64 │ Int64 │ Int64 │
├─────┼───────┼───────┼───────┤
│ 1 │ 1 │ 4 │ 7 │
│ 2 │ 2 │ 5 │ 8 │
│ 3 │ 3 │ 6 │ 9 │
Code explanation
-
using DataFrames: This imports theDataFramespackage which contains theDataFrametype. -
df = DataFrame(A = [1,2,3], B = [4,5,6], C = [7,8,9]): This creates aDataFrameobject with 3 columns,A,BandC, and 3 rows of data. -
println(df): This prints theDataFrameobject to the console.
Helpful links
More of Julialang
- How to test code in JuliaLang?
- How to measure execution time in JuliaLang?
- How to create plots in JuliaLang?
- Machine learning example in JuliaLang?
- How to install JuliaLang on Linux?
- How to include a package in JuliaLang?
- How to create a for loop in JuliaLang?
- How to use tuples in JuliaLang?
- How to use the JuliaLang PackageCompiler?
See more codes...