{"id":27377957,"url":"https://github.com/jusexton/imbue-web","last_synced_at":"2025-10-13T21:02:50.577Z","repository":{"id":135724908,"uuid":"433340245","full_name":"jusexton/imbue-web","owner":"jusexton","description":"Web service exposing the imbue framework functionality","archived":false,"fork":false,"pushed_at":"2024-03-10T10:00:17.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-13T13:09:01.543Z","etag":null,"topics":["rocket-rs","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jusexton.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2021-11-30T07:49:42.000Z","updated_at":"2021-12-31T00:23:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"9e6e5ac5-9666-4cb9-9ec7-8039e1c304c8","html_url":"https://github.com/jusexton/imbue-web","commit_stats":null,"previous_names":["jusexton/imbue-web"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jusexton/imbue-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jusexton%2Fimbue-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jusexton%2Fimbue-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jusexton%2Fimbue-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jusexton%2Fimbue-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jusexton","download_url":"https://codeload.github.com/jusexton/imbue-web/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jusexton%2Fimbue-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279016885,"owners_count":26085912,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["rocket-rs","rust"],"created_at":"2025-04-13T13:08:58.600Z","updated_at":"2025-10-13T21:02:50.559Z","avatar_url":"https://github.com/jusexton.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Imbue Web\n\n![](https://github.com/jsextonn/imbue-web/workflows/build/badge.svg)\n\nLightning quick dataset imbuing web service for making sure your data is ready for presentation!\n\n## How it Works\n\n1. Provide the dataset that needs to be \"imbued\" and fill in the missing data.\n2. Provide a strategy on how the missing data should be populated.\n\n```json\n{\n  \"strategy\": \"zeroed | last_known | average\",\n  \"dataset\": [\n    {\n      \"x\": 0,\n      \"y\": 5.5\n    },\n    {\n      \"x\": 4,\n      \"y\": 12\n    },\n    {\n      \"x\": 7,\n      \"y\": 54.72\n    }\n  ]\n}\n```\n\n## Strategies\n\n### Zeroed\n\nCreates missing data points with 0 y value.\n\nInput:\n\n```json\n{\n  \"strategy\": \"zeroed\",\n  \"dataset\": [\n    {\n      \"x\": 1,\n      \"y\": 1\n    },\n    {\n      \"x\": 5,\n      \"y\": 10\n    }\n  ]\n}\n```\n\nOutput:\n\n```json\n{\n  \"dataset\": [\n    {\n      \"x\": 2.0,\n      \"y\": 0.0\n    },\n    {\n      \"x\": 3.0,\n      \"y\": 0.0\n    },\n    {\n      \"x\": 4.0,\n      \"y\": 0.0\n    }\n  ]\n}\n```\n\n### Last Known\n\nCreates missing data points with the last known y value.\n\nInput:\n\n```json\n{\n  \"strategy\": \"last_known\",\n  \"dataset\": [\n    {\n      \"x\": 1,\n      \"y\": 1\n    },\n    {\n      \"x\": 5,\n      \"y\": 10\n    }\n  ]\n}\n```\n\nOutput:\n\n```json\n{\n  \"dataset\": [\n    {\n      \"x\": 2.0,\n      \"y\": 1.0\n    },\n    {\n      \"x\": 3.0,\n      \"y\": 1.0\n    },\n    {\n      \"x\": 4.0,\n      \"y\": 1.0\n    }\n  ]\n}\n```\n\n### Average\n\nCreates missing data points with an average y value between the last known data point and the next known data point. If\nmultiple points are missing, the y values will be adjusted to smoothly approach the next known y value.\n\nInput:\n\n```json\n{\n  \"strategy\": \"average\",\n  \"dataset\": [\n    {\n      \"x\": 1,\n      \"y\": 1\n    },\n    {\n      \"x\": 5,\n      \"y\": 10\n    }\n  ]\n}\n```\n\nOutput:\n\n```json\n{\n  \"dataset\": [\n    {\n      \"x\": 2.0,\n      \"y\": 3.25\n    },\n    {\n      \"x\": 3.0,\n      \"y\": 5.5\n    },\n    {\n      \"x\": 4.0,\n      \"y\": 7.75\n    }\n  ]\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjusexton%2Fimbue-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjusexton%2Fimbue-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjusexton%2Fimbue-web/lists"}