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 theDataFrames
package which contains theDataFrame
type. -
df = DataFrame(A = [1,2,3], B = [4,5,6], C = [7,8,9])
: This creates aDataFrame
object with 3 columns,A
,B
andC
, and 3 rows of data. -
println(df)
: This prints theDataFrame
object to the console.
Helpful links
More of Julialang
- How to test code in JuliaLang?
- How to round numbers in JuliaLang?
- How to get JuliaLang version?
- How to use tuples in JuliaLang?
- How to use the JuliaLang package manager?
- How to install JuliaLang?
- How to solve differential equations in JuliaLang?
- How to use try catch in JuliaLang?
- How to use regular expressions in JuliaLang?
- How to calculate the mean in JuliaLang?
See more codes...