
    ;3h0                    F   d dl mZ d dlZd dlZd dlmZmZmZ d dlm	Z	m
Z
mZ d dlmZ d dlmZ d dlmZ d dlmZ d d	lmZ e	r
d dlZd d
lmZ  G d de      Z G d de      Z e        G d de             Z e        G d de             Z e        G d de             Zy)    )annotationsN)CallableSequenceSet)TYPE_CHECKINGAnyLiteral)document)	Component)GradioModel)Events)I18nData)Timerc                  6    e Zd ZU ded<   ded<   ded<   ded<   y	)
PlotDataz	list[str]columnszlist[list[Any]]dataz9dict[str, Literal['quantitative', 'nominal', 'temporal']]	datatypesstrmarkN)__name__
__module____qualname____annotations__     ]/var/www/html/audio-gradio/venv/lib/python3.12/site-packages/gradio/components/native_plot.pyr   r      s    
HH
Ir   r   c            !      \    e Zd ZdZej
                  ej                  gZ	 	 	 ddddddddddddddddddddddddddddddddd		 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 	 d fd
ZddZ	ddZ
ddZddZddZddZddZ xZS )
NativePlotz
    Creates a native Gradio plot component to display data from a pandas DataFrame. Supports interactivity and updates.

    Demos: native_plots
    Nr   Taxis   Fvalue)colortitlex_titley_titlecolor_titlex_biny_aggregate	color_mapx_limy_limx_label_angley_label_anglex_axis_labels_visiblecaptionsorttooltipheightlabel
show_label	containerscale	min_widtheveryinputsvisibleelem_idelem_classesrendershow_fullscreen_buttonkeypreserved_by_keyc                  || _         || _        || _        || _        || _        || _        || _        |	| _        |
| _        || _	        || _
        || _        || _        || _        || _        || _        || _        || _        || _        | | _        ||d}t(        &| U  |||||||||||!|"||       |#j-                         D ]4  \  }$}%|$dk(  r|%| _        |$dv st/        j0                  d|$ dt2               6 y)aR  
        Parameters:
            value: The pandas dataframe containing the data to display in the plot.
            x: Column corresponding to the x axis. Column can be numeric, datetime, or string/category.
            y: Column corresponding to the y axis. Column must be numeric.
            color: Column corresponding to series, visualized by color. Column must be string/category.
            title: The title to display on top of the chart.
            x_title: The title given to the x axis. By default, uses the value of the x parameter.
            y_title: The title given to the y axis. By default, uses the value of the y parameter.
            color_title: The title given to the color legend. By default, uses the value of color parameter.
            x_bin: Grouping used to cluster x values. If x column is numeric, should be number to bin the x values. If x column is datetime, should be string such as "1h", "15m", "10s", using "s", "m", "h", "d" suffixes.
            y_aggregate: Aggregation function used to aggregate y values, used if x_bin is provided or x is a string/category. Must be one of "sum", "mean", "median", "min", "max".
            color_map: Mapping of series to color names or codes. For example, {"success": "green", "fail": "#FF8888"}.
            height: The height of the plot in pixels.
            x_lim: A tuple or list containing the limits for the x-axis, specified as [x_min, x_max]. If x column is datetime type, x_lim should be timestamps.
            y_lim: A tuple of list containing the limits for the y-axis, specified as [y_min, y_max].
            x_label_angle: The angle of the x-axis labels in degrees offset clockwise.
            y_label_angle: The angle of the y-axis labels in degrees offset clockwise.
            x_axis_labels_visible: Whether the x-axis labels should be visible. Can be hidden when many x-axis labels are present.
            caption: The (optional) caption to display below the plot.
            sort: The sorting order of the x values, if x column is type string/category. Can be "x", "y", "-x", "-y", or list of strings that represent the order of the categories.
            tooltip: The tooltip to display when hovering on a point. "axis" shows the values for the axis columns, "all" shows all column values, and "none" shows no tooltips. Can also provide a list of strings representing columns to show in the tooltip, which will be displayed along with axis values.
            height: The height of the plot in pixels.
            label: The (optional) label to display on the top left corner of the plot.
            show_label: Whether the label should be displayed.
            container: If True, will place the component in a container - providing some extra padding around the border.
            scale: relative size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. scale applies in Rows, and to top-level Components in Blocks where fill_height=True.
            min_width: minimum pixel width, will wrap if not sufficient screen space to satisfy this value. If a certain scale value results in this Component being narrower than min_width, the min_width parameter will be respected first.
            every: Continously calls `value` to recalculate it if `value` is a function (has no effect otherwise). Can provide a Timer whose tick resets `value`, or a float that provides the regular interval for the reset Timer.
            inputs: Components that are used as inputs to calculate `value` if `value` is a function (has no effect otherwise). `value` is recalculated any time the inputs change.
            visible: Whether the plot should be visible.
            elem_id: An optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles.
            elem_classes: An optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles.
            render: If False, component will not render be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later.
            show_fullscreen_button: If True, will show a button to make plot visible in fullscreen mode.
            key: in a gr.render, Components with the same key across re-renders are treated as the same component, not a new component. Properties set in 'preserved_by_key' are not reset across a re-render.
            preserved_by_key: A list of parameters from this component's constructor. Inside a gr.render() function, if a component is re-rendered with the same key, these (and only these) parameters will be preserved in the UI (if they have been changed by the user or an event listener) instead of re-rendered based on the values provided during constructor.
        NF)r"   r4   r5   r6   r7   r8   r;   r<   r=   r>   r@   rA   r9   r:   color_legend_title)stroke_dashoverlay_pointr-   r.   interactiveshow_actions_buttonrC   widthz
Argument 'z' has been deprecated.)xyr#   r$   r%   r&   r'   r(   r)   r*   r+   r,   r-   r.   r/   r0   r1   r2   r3   r?   super__init__itemswarningswarnDeprecationWarning)'selfr"   rI   rJ   r#   r$   r%   r&   r'   r(   r)   r*   r+   r,   r-   r.   r/   r0   r1   r2   r3   r4   r5   r6   r7   r8   r9   r:   r;   r<   r=   r>   r?   r@   rA   kwargskey_val	__class__s'                                         r   rL   zNativePlot.__init__)   s:   \ 

&
&"

**%:"	&<#=Z/J!%- 	 	
    	ID#++#&  	 	  &<=?Q	r   c                     yN
nativeplotr   rQ   s    r   get_block_namezNativePlot.get_block_name       r   c                     y)Nnativer   rY   s    r   get_markzNativePlot.get_mark   s    r   c                    |S )z
        Parameters:
            payload: The data to display in a line plot.
        Returns:
            The data to display in a line plot.
        r   )rQ   payloads     r   
preprocesszNativePlot.preprocess   s	     r   c                &   |t        |t              r|S d }t        j                  |j	                  dd            }|j
                  D ci c]  }| |||   j                         }}t        |d   |d   || j                               S c c}w )a  
        Parameters:
            value: Expects a pandas DataFrame containing the data to display in the line plot. The DataFrame should contain at least two columns, one for the x-axis (corresponding to this component's `x` argument) and one for the y-axis (corresponding to `y`).
        Returns:
            The data to display in a line plot, in the form of an AltairPlotData dataclass, which includes the plot information as a JSON string, as well as the type of plot (in this case, "line").
        c                T   dd l }|j                  j                  j                  |       ry|j                  j                  j	                  |       s%|j                  j                  j                  |       ry|j                  j                  j                  |       ryt        d|        )Nr   quantitativenominaltemporalzUnsupported data type: )pandasapitypesis_numeric_dtypeis_string_dtypeis_categorical_dtypeis_datetime64_any_dtype
ValueError)dtypepds     r   get_simplified_typez3NativePlot.postprocess.<locals>.get_simplified_type   s|    vv||,,U3%--2259 55e<! #:5'!BCCr   splitms)orient	date_unitr   r   )r   r   r   r   )	
isinstancedictjsonloadsto_jsonr   ro   r   r^   )rQ   r"   rq   
split_jsoncolr   s         r   postprocesszNativePlot.postprocess   s     =Jud3L	D ZZW MN
BG--
;>C$U3Z%5%566
	 
 y)F#	
 	

s   Bc                     y )Nr   rY   s    r   example_payloadzNativePlot.example_payload   s    r   c                f    dd l } |j                  | j                  g d| j                  g di      S )Nr   )         )         )rg   	DataFramerI   rJ   )rQ   rp   s     r   example_valuezNativePlot.example_value   s'    r||TVVY	BCCr   c                    i ddS )Nzany valid json)typedescriptionr   rY   s    r   api_infozNativePlot.api_info   s    +;<<r   )NNN)Dr"   zpd.DataFrame | Callable | NonerI   
str | NonerJ   r   r#   r   r$   r   r%   r   r&   r   r'   r   r(   zstr | float | Noner)   z>Literal['sum', 'mean', 'median', 'min', 'max', 'count'] | Noner*   zdict[str, str] | Noner+   list[float] | Noner,   r   r-   floatr.   r   r/   boolr0   str | I18nData | Noner1   z0Literal['x', 'y', '-x', '-y'] | list[str] | Noner2   z*Literal['axis', 'none', 'all'] | list[str]r3   
int | Noner4   r   r5   zbool | Noner6   r   r7   r   r8   intr9   zTimer | float | Noner:   z7Component | Sequence[Component] | Set[Component] | Noner;   r   r<   r   r=   list[str] | str | Noner>   r   r?   r   r@   z(int | str | tuple[int | str, ...] | NonerA   r   returnr   )r`   PlotData | Noner   r   )r"   zpd.DataFrame | dict | Noner   r   )r   r   )r   zdict[str, Any])r   r   r   __doc__r   selectdouble_clickEVENTSrL   rZ   r^   ra   r}   r   r   r   __classcell__)rU   s   @r   r   r       s<    mmV001F 15	D ! """&$(+/$($(  &*)-AE>D!'+"& &*JN"/3',8<3:KD-D D 	D D D D D  D "DD )D "D  "!D" #D$ %D&  $'D( ')D* ?+D, <-D. /D0 %1D2  3D4 5D6 7D8 9D: $;D< H=D> ?D@ ADB -CDD EDF !%GDH 6IDJ 1KDL"
HD
=r   r   c                       e Zd ZdZddZddZy)BarPlotzi
    Creates a bar plot component to display data from a pandas DataFrame.

    Demos: bar_plot_demo
    c                     yrW   r   rY   s    r   rZ   zBarPlot.get_block_name   r[   r   c                     y)Nbarr   rY   s    r   r^   zBarPlot.get_mark   s    r   Nr   r   r   r   r   rZ   r^   r   r   r   r   r      s    r   r   c                       e Zd ZdZddZddZy)LinePlotzk
    Creates a line plot component to display data from a pandas DataFrame.

    Demos: line_plot_demo
    c                     yrW   r   rY   s    r   rZ   zLinePlot.get_block_name  r[   r   c                     y)Nliner   rY   s    r   r^   zLinePlot.get_mark  s    r   Nr   r   r   r   r   r   r      s    r   r   c                       e Zd ZdZddZddZy)ScatterPlotzq
    Creates a scatter plot component to display data from a pandas DataFrame.

    Demos: scatter_plot_demo
    c                     yrW   r   rY   s    r   rZ   zScatterPlot.get_block_name  r[   r   c                     y)Npointr   rY   s    r   r^   zScatterPlot.get_mark  s    r   Nr   r   r   r   r   r   r     s    r   r   )
__future__r   rx   rN   collections.abcr   r   r   typingr   r   r	   gradio_client.documentationr
   gradio.components.baser   gradio.data_classesr   gradio.eventsr   gradio.i18nr   rg   rp   gradio.componentsr   r   r   r   r   r   r   r   r   <module>r      s    "   3 3  1 , +    '{ K= K=\ 
j   
z   
*  r   