Skip to content

Instantly share code, notes, and snippets.

@jreadey
Created March 12, 2024 15:07
Show Gist options
  • Save jreadey/2801b741ecab493319f07f8e8873ce23 to your computer and use it in GitHub Desktop.
Save jreadey/2801b741ecab493319f07f8e8873ce23 to your computer and use it in GitHub Desktop.
Example of using the h5pyd query update method
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Example of using h5pyd table class with query update."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import h5pyd\n",
"import numpy as np\n",
"from random import randint"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"# create a new domain (will overwrite any existing domain with this name!)\n",
"f = h5pyd.File(\"/home/test_user1/query_update_ex.h5\", \"w\")"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"dtype([('is_set', 'i1'), ('value', '<i4')])"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# define a numpy compound_datatype \n",
"dtype = np.dtype([(\"is_set\", np.dtype(\"i1\")), (\"value\", np.dtype(\"i4\"))])\n",
"dtype"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"<HDF5 dataset \"data\": shape (0,), type \"|V5\">"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# create a table (equivalent to one-dimensional dataset)\n",
"data = f.create_table(\"data\", 0, dtype=dtype)\n",
"data"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"data.nrows # table property"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(0,)"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"data.shape # dataset property"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(262144,)"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"data.chunks"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(1, 42)"
]
},
"execution_count": 8,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# append method will automaticaly extend the dataset\n",
"data.append([(1, 42),])\n",
"data[0]"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [],
"source": [
"# append some rows with random values between -500 and 500\n",
"for _ in range(1000):\n",
" n = randint(-500, 500)\n",
" # it would be much efficient to batch these into groups, but\n",
" # will do it this way simplify the code\n",
" data.append([(1, n)])"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"1001"
]
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"data.nrows"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"507"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# return all the rows where value happend to be greater than zero\n",
"arr = data.read_where(\"value > 0\")\n",
"len(arr)"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"491"
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# set all the negative values to zero\n",
"update_val = {\"value\": 0}\n",
"arr = data.update_where(\"value < 0\", update_val)\n",
"len(arr)"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0"
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"arr = data.read_where(\"value < 0\")\n",
"len(arr)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "py39",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.15"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment