{"id":32203650,"url":"https://github.com/msuzen/julia","last_synced_at":"2026-02-19T23:01:12.176Z","repository":{"id":29982154,"uuid":"33529326","full_name":"msuzen/Julia","owner":"msuzen","description":"Julia: Fractal Image Data Generator","archived":false,"fork":false,"pushed_at":"2024-07-24T00:38:06.000Z","size":169,"stargazers_count":1,"open_issues_count":7,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-09T13:41:32.080Z","etag":null,"topics":["cran","cran-r","fractals","julia","julia-fractal","julia-sets","mandelbrot-fractal","mandelbrot-renderer","mandelbrot-set","r","r-package","r-programming","shape-analysis"],"latest_commit_sha":null,"homepage":"","language":"R","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/msuzen.png","metadata":{"files":{"readme":"README.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2015-04-07T07:44:59.000Z","updated_at":"2024-07-24T00:38:10.000Z","dependencies_parsed_at":"2025-09-08T13:02:26.424Z","dependency_job_id":"1cbf5300-36c3-4dc1-b32e-ccc9f51563fc","html_url":"https://github.com/msuzen/Julia","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/msuzen/Julia","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msuzen%2FJulia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msuzen%2FJulia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msuzen%2FJulia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msuzen%2FJulia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/msuzen","download_url":"https://codeload.github.com/msuzen/Julia/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msuzen%2FJulia/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29636035,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T22:32:43.237Z","status":"ssl_error","status_checked_at":"2026-02-19T22:32:38.330Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cran","cran-r","fractals","julia","julia-fractal","julia-sets","mandelbrot-fractal","mandelbrot-renderer","mandelbrot-set","r","r-package","r-programming","shape-analysis"],"created_at":"2025-10-22T04:44:43.347Z","updated_at":"2026-02-19T23:01:12.170Z","avatar_url":"https://github.com/msuzen.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CRAN Version](https://www.r-pkg.org/badges/version/Julia)](https://cran.r-project.org/package=Julia)\n[![Total RStudio Cloud Downloads](https://cranlogs.r-pkg.org/badges/grand-total/Julia?color=brightgreen)](https://cran.r-project.org/package=Julia)\n[![RStudio Cloud Downloads](https://cranlogs.r-pkg.org/badges/Julia?color=brightgreen)](https://cran.r-project.org/package=Julia)\n[![License](http://img.shields.io/badge/license-GPLv3-brightgreen.svg)](http://www.gnu.org/licenses/gpl-3.0.html)\n\n# Julia\nJulia: Fractal Image Data Generator\n\nThe package aim at generating Julia and Mandelbrot sets with given initial conditions and resolution using\nan escape time algorithm. A resulting data matrix is represents escape times at each matrix entry.\n\n## Julia Set\n\n[Julia set](https://en.wikipedia.org/wiki/Julia_set) data can be generated with the `JuliaImage` function. \nAn example case, \n\n```r\nimageN \u003c- 2000\ncentre \u003c- 0.0\nL \u003c- 4.0\nC \u003c- -0.8 + 0.156i\nimage_matrix \u003c- JuliaImage(imageN, centre, L, C)\n```\n\nA sample visualisation with R's hcl palette `Roma` as set values on \na grid given as a matrix.\n\n```r\npar(mar=c(0, 0, 0, 0))\nimage(image_matrix[550:1450, 200:1800], \n      col=hcl.colors(2000, palette=\"Roma\"), \n      axes=FALSE, useRaster=TRUE)\n```\n\n![](man/figures/julia0.jpeg) \n\n## Mandelbrot set \n\n[Mandelbrot set](https://en.wikipedia.org/wiki/Mandelbrot_set) data can be generated with `MandelImage` function.\n\nAn example to generate the data:\n\n```r\nimageN \u003c- 2000; \ncentre \u003c- 0.0\nL \u003c- 4.0\nimage_matrix \u003c- MandelImage(imageN, centre, L);\n```\n\nA sample visualisation with R's hcl palette `Roma` as set values on \na grid given as a matrix.\n\n```r\npar(mar=c(0, 0, 0, 0))\nimage(image_matrix[350:1600, 1:1250], \n      col=hcl.colors(2000,  palette=\"Roma\"),\n      axes=FALSE, useRaster=TRUE)\n```\n![](man/figures/mandelbrot0.jpeg) \n\nAnd an other zooming \n```r\npar(mar=c(0, 0, 0, 0))\nimage(image_matrix[800:1200, 200:600], \n      col=hcl.colors(2000,  palette=\"Roma\"),\n      axes=FALSE, useRaster=TRUE)\n```\n![](man/figures/mandelbrot1.jpeg) \n\n## Acknowledgements\n\nAuthor is grateful to Ranjan Maitra for his suggestions on reviving the package.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmsuzen%2Fjulia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmsuzen%2Fjulia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmsuzen%2Fjulia/lists"}