{"id":16282352,"url":"https://github.com/zsailer/skspline","last_synced_at":"2026-04-16T04:31:59.492Z","repository":{"id":150629872,"uuid":"129035291","full_name":"Zsailer/skspline","owner":"Zsailer","description":"A Scikit-learn interface on Scipy's spline.","archived":false,"fork":false,"pushed_at":"2019-07-02T23:26:30.000Z","size":111,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-08T17:53:28.445Z","etag":null,"topics":["scikit-learn","scipy"],"latest_commit_sha":null,"homepage":null,"language":"Python","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/Zsailer.png","metadata":{"files":{"readme":"README.rst","changelog":null,"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,"publiccode":null,"codemeta":null}},"created_at":"2018-04-11T04:41:02.000Z","updated_at":"2019-07-02T23:26:32.000Z","dependencies_parsed_at":"2023-04-15T21:46:18.128Z","dependency_job_id":null,"html_url":"https://github.com/Zsailer/skspline","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Zsailer/skspline","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zsailer%2Fskspline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zsailer%2Fskspline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zsailer%2Fskspline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zsailer%2Fskspline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Zsailer","download_url":"https://codeload.github.com/Zsailer/skspline/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zsailer%2Fskspline/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31871502,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"online","status_checked_at":"2026-04-16T02:00:06.042Z","response_time":69,"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":["scikit-learn","scipy"],"created_at":"2024-10-10T19:10:25.092Z","updated_at":"2026-04-16T04:31:59.483Z","avatar_url":"https://github.com/Zsailer.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Scikit Spline\n=============\n\nA Scikit-learn interface on Scipy's ``Univariate Spline``.\n\n.. code-block:: python\n\n  import matplotlib.pyplot as plt\n  import numpy as np\n  import skspline\n\n  # Simulate data.\n  x = np.linspace(0, 4, 100)\n  y = 10*np.sin(x)\n  yerr = np.random.randn(len(y))\n\n  # Add noise to y.\n  y = y + yerr\n\n  # Initialize a Scikit Spline model and fit.\n  m = skspline.Spline(k=2)\n  m.fit(x, y)\n\n  # Get model\n  xmodel = np.linspace(0, 4, 1000)\n  ymodel = m.predict(xmodel)\n\n  # plot data and model\n  plt.scatter(x, y)\n  plt.plot(xmodel,ymodel, color='k', linewidth=5)\n  plt.show()\n\n\n.. image:: docs/_img/example.png\n  :scale: 50 %\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzsailer%2Fskspline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzsailer%2Fskspline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzsailer%2Fskspline/lists"}