lux icon indicating copy to clipboard operation
lux copied to clipboard

Automatically visualize your pandas dataframe via a single print! 📊 💡

Results 86 lux issues
Sort by recently updated
recently updated
newest added

## TODO: - Disable Keyboard Shortcuts (probably in frontend) - Documentation / Tests ## Overview Add interaction to open visualizations in full view. https://github.com/lux-org/lux-widget/issues/45 Linked to https://github.com/lux-org/lux-widget/pull/80 ## Changes -...

Hi, If I specify an illogical intent, i.e. one where the conditions do not overlap or make sense like specifying an `attribute` that is a quantitative variable but then also...

bug

**Describe the bug** Without `self.code += f”df = pd.DataFrame({str(self.data.to_dict())})\n”`, exported BarChart, LineChart and ScatterChart that contain computed data throw an error. **To Reproduce** ``` df = pd.read_csv('https://github.com/lux-org/lux-datasets/blob/master/data/hpi.csv?raw=true') df ``` ```...

bug

**Describe the bug** When specifying a colored barchart is set as the current vis, the Lux filter action does not properly apply filters to the chart. Instead of being recommended...

bug

![109049166-c8b90600-768c-11eb-8543-4e8dfb95c098](https://user-images.githubusercontent.com/11529801/109890222-c3832a80-7c3b-11eb-9732-f118bf5c2729.png) Long color legend chart truncates number of categories, without an ellipsis indicator Add a "..." small icon graphic at the end of the list ![more](https://user-images.githubusercontent.com/11529801/109890343-faf1d700-7c3b-11eb-99df-8f3afa51e4e7.png) - Using plaintext "..."...

Ordinal data are common in rating scales for surveys, as well as attributes like Age or number of years for X. Ordinal data currently gets classified as categorical, especially if...

easy

**Describe the bug** For bar charts, if there are more than two of the same attributes specified, then `reset_index` in `execute_aggregate` throws an error. **To Reproduce** ```python df = pd.read_csv("https://github.com/lux-org/lux-datasets/tree/master/data/airbnb_nyc.csv?raw=True")...

bug

Expose the ability to let users set their own visualization type. 1) Expose visualization type as a parameters in `Vis` e.g.) `Vis(["Weight","Height"],df,mark="bar")` 2) Expose the ability to set `vis.mark` publicly....

enhancement

**Description** When an inequality filter is specified, the parsing causes an error since the inequality is not detected and input is assumed as an attribute. **To Reproduce** ```python df =...

bug

Computing recommendations on large datasets can be very slow. To account for this, we can have Lux render tabs when they are computed instead of rendering Lux only after all...