FeatherFiles.jl
FileIO.jl integration for Feather files
Install / Use
/learn @queryverse/FeatherFiles.jlREADME
FeatherFiles
Overview
This package provides load and save support for Feather files under the FileIO.jl package.
Installation
Use Pkg.add("FeatherFiles") in Julia to install FeatherFiles and its dependencies.
Usage
Load a feather file
To read a feather file into a DataFrame, use the following julia code:
using FeatherFiles, DataFrames
df = DataFrame(load("data.feather"))
The call to load returns a struct that is an IterableTable.jl, so it can be passed to any function that can handle iterable tables, i.e. all the sinks in IterableTable.jl. Here are some examples of materializing a feather file into data structures that are not a DataFrame:
using FeatherFiles, DataTables, IndexedTables, TimeSeries, Temporal, Gadfly
# Load into a DataTable
dt = DataTable(load("data.feather"))
# Load into an IndexedTable
it = IndexedTable(load("data.feather"))
# Load into a TimeArray
ta = TimeArray(load("data.feather"))
# Load into a TS
ts = TS(load("data.feather"))
# Plot directly with Gadfly
plot(load("data.feather"), x=:a, y=:b, Geom.line)
Save a feather file
The following code saves any iterable table as a feather file:
using FeatherFiles
save("output.feather", it)
This will work as long as it is any of the types supported as sources in IterableTables.jl.
Using the pipe syntax
Both load and save also support the pipe syntax. For example, to load a feather file into a DataFrame, one can use the following code:
using FeatherFiles, DataFrame
df = load("data.feather") |> DataFrame
To save an iterable table, one can use the following form:
using FeatherFiles, DataFrame
df = # Aquire a DataFrame somehow
df |> save("output.feather")
The pipe syntax is especially useful when combining it with Query.jl queries, for example one can easily load a feather file, pipe it into a query, then pipe it to the save function to store the results in a new file.
Related Skills
node-connect
344.1kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
96.8kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
344.1kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
344.1kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
