Replies: 2 comments 2 replies
-
|
Beta Was this translation helpful? Give feedback.
1 reply
-
You may need to install Vega `pip install vega`. If that doesn’t work you
may need to use the svg renderer.
…On Mon, Jun 23, 2025 at 11:15 AM RTranLA ***@***.***> wrote:
Forgive me for the late reply, but I have an update on the situation.
First off, I am using Spyder to run my python code. That's relevant
because after combing through the docs, I stumbled across browser renderer,
which looks like something that works with Spyder. So, I tweaked my code to
look like this:
import pandas as pd
import altair as alt
alt.renderers.enable("browser")
df = pd.read_excel('file.xlsx')
from splink.exploratory import completeness_chart
from splink import DuckDBAPI
db_api = DuckDBAPI()
completeness_chart(df, db_api=db_api)
But when I ran the code, I got this:
NoSuchEntryPoint: No 'browser' entry point found in group
'altair.vegalite.v5.renderer'
Not sure where I went wrong. Do you know?
—
Reply to this email directly, view it on GitHub
<#3843 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAOSGHB5YHEQDHJKWXTVVW33FAY2BAVCNFSM6AAAAAB6WKDWX2VHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTGNJVGM3DIMY>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
Essentially, I'm trying to display a completeness chart from Splink. I have done something like this before. Here is the code I used:
But when I ran this, I got this error message:
Which confused me, because I'm pretty sure I installed altair. Here is a list of my packages from "pip list":
Not exactly sure where I went wrong. One more thing,if it helps. I'm basing my python code off of this code from this link(https://moj-analytical-services.github.io/splink/demos/tutorials/02_Exploratory_analysis.html), which is:
from splink import splink_datasets
That's all I have to say for now. Hope to hear something soon. Thanks
Beta Was this translation helpful? Give feedback.
All reactions