摘要:
Apache Airflow is known within the data engineering community as the go-to open source platform for “developing, scheduling, and monitoring batch-orie
阅读全文
posted @ 2025-01-18 20:16
ZhangZhihuiAAA
阅读(8)
推荐(0)
摘要:
For the purpose of this book, we use the Docker version of PySpark, running on a single machine. If you have a version of PySpark installed on a distr
阅读全文
posted @ 2025-01-18 11:16
ZhangZhihuiAAA
阅读(9)
推荐(0)
摘要:
frank@ZZHUBT:~$ docker pull jupyter/pyspark-notebook docker run --name pyspark-notebook -p 8888:8888 -v ~/dkvols/pyspark-notebook/:/home/jovyan/work/
阅读全文
posted @ 2025-01-17 21:20
ZhangZhihuiAAA
阅读(38)
推荐(0)
摘要:
(zpy310) frank@ZZHUBT:~$ pip install duckdb (zpy310) frank@ZZHUBT:~$ pip install harlequin ...... Successfully installed MarkupSafe-3.0.2 click-8.1.8
阅读全文
posted @ 2025-01-17 13:19
ZhangZhihuiAAA
阅读(44)
推荐(0)
摘要:
import duckdb records = duckdb.read_csv("data/C11/Pedestrian_Counting_System_Monthly_counts_per_hour_may_2009_to_14_dec_2022.csv") records.show(max_wi
阅读全文
posted @ 2025-01-16 21:53
ZhangZhihuiAAA
阅读(25)
推荐(0)
摘要:
In this section, we are going to explore some of the DuckDB niceties – little shortcuts and tweaks to make your use of DuckDB easier. D CREATE OR REPL
阅读全文
posted @ 2025-01-16 18:03
ZhangZhihuiAAA
阅读(42)
推荐(0)
摘要:
(duckdb_book) frank@ZZHUBT:~$ python Python 3.13.1 (main, Jan 15 2025, 18:12:47) [GCC 11.4.0] on linux Type "help", "copyright", "credits" or "license
阅读全文
posted @ 2025-01-16 10:56
ZhangZhihuiAAA
阅读(601)
推荐(0)
摘要:
Requirements: duckdb emoji ibis-framework ibis-framework[duckdb] jupysql jupyter-lsp jupyterlab pandas plotly polars-lts-cpu pyarrow sqlparse pi_relat
阅读全文
posted @ 2025-01-15 20:52
ZhangZhihuiAAA
阅读(21)
推荐(0)
摘要:
I installed VSCode extension Black Formatter, but it seemed not work. Later, I found that it only work when there's no syntax error and it can't forma
阅读全文
posted @ 2025-01-15 20:09
ZhangZhihuiAAA
阅读(24)
推荐(0)
摘要:
import duckdb duckdb.sql("SELECT 'duck' AS animal, 'quack!' AS greeting") ┌─────────┬──────────┐ │ animal │ greeting │ │ varchar │ varchar │ ├────────
阅读全文
posted @ 2025-01-15 17:41
ZhangZhihuiAAA
阅读(17)
推荐(0)