Skip to main content

Problem in running Dash DatePickerRange with Graph

I am new to Python programming. I am trying to add a date range to my graph using DatePickerRange in Dash but it doesn't seem to work. The following message is displayed every time I click on the link:

enter image description here

My data frame is in the following format: Date (index, YYYY-MM-DD), Machine, Start Time (YYYY-MM-DD HH-MM-SS), Parameter 1, Parameter 2

My inputs are: start date, end date, parameter (from drop down).

Output: line graph for the specified date range with "Parameter" on the y-axis, "Start Time" on the x-axis, legend="Machine"

datatypes: Start Time: datetime64[ns] Parameter: int64 Machine: object

I have tried plotting without DatePickerRange and it seems to work fine. Somehow, with DatePickerRange my inputs are not being read.

I am not sure what I am doing wrong. I've provided part of the code below. Any help will be greatly appreciated!

app = dash.Dash(__name__)

app.layout = html.Div([
dcc.DatePickerRange(
    id='my-date-picker-range',
    calendar_orientation='horizontal',
    day_size=39,
    end_date_placeholder_text='End Date',
    with_portal=False,
    first_day_of_week=1,
    reopen_calendar_on_clear=True,
    is_RTL=False,
    clearable=True,
    number_of_months_shown=1,
    min_date_allowed=dt(2022, 1, 1).date(),
    max_date_allowed=dt(2022, 3, 17).date(),
    initial_visible_month=dt(2022, 1, 1).date(),
    start_date=dt(2022, 1, 1).date(),
    end_date=dt(2022, 2, 17).date(),
    display_format='MMM Do, YY',
    month_format='MMMM, YYYY',
    minimum_nights=2,

    persistence=True,
    persisted_props=['start_date'],
    persistence_type='session',

    updatemode='bothdates'
),

html.H1("Machine Parameter Tracker"),

dcc.Dropdown(id='Parameter',
             options=[{'label': x, 'value': x} for x in column_list],
             value={}),
dcc.Graph(id='my-graph', figure={})
])

@app.callback(
    Output(component_id='my-graph', component_property='figure'),
    [Input(component_id='my-date-picker-range', component_property='start_date'),
     Input(component_id='my_date_picker_range', component_property='end_date'),
     Input(component_id='Parameter', component_property='value')]
)
def interactive_graphing(start_date, end_date, value_parameter):
    print(value_parameter)
    print(start_date)
    print(end_date)

    dff = df.loc[start_date:end_date]
    print(dff)

    dff2 = pd.DataFrame()
    dff2['Start Time'] = dff['Start Time']
    dff2['Machine'] = dff['Machine']
    dff2['Parameter'] = dff[value_parameter]
    fig = px.line(dff2, x='Start Time', y='Parameter', color='Machine')
    return fig

if __name__ == '__main__':
    app.run_server()


source https://stackoverflow.com/questions/71679036/problem-in-running-dash-datepickerrange-with-graph

Comments

Popular posts from this blog

How to show number of registered users in Laravel based on usertype?

i'm trying to display data from the database in the admin dashboard i used this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count(); echo $users; ?> and i have successfully get the correct data from the database but what if i want to display a specific data for example in this user table there is "usertype" that specify if the user is normal user or admin i want to user the same code above but to display a specific usertype i tried this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count()->WHERE usertype =admin; echo $users; ?> but it didn't work, what am i doing wrong? source https://stackoverflow.com/questions/68199726/how-to-show-number-of-registered-users-in-laravel-based-on-usertype

Why is my reports service not connecting?

I am trying to pull some data from a Postgres database using Node.js and node-postures but I can't figure out why my service isn't connecting. my routes/index.js file: const express = require('express'); const router = express.Router(); const ordersCountController = require('../controllers/ordersCountController'); const ordersController = require('../controllers/ordersController'); const weeklyReportsController = require('../controllers/weeklyReportsController'); router.get('/orders_count', ordersCountController); router.get('/orders', ordersController); router.get('/weekly_reports', weeklyReportsController); module.exports = router; My controllers/weeklyReportsController.js file: const weeklyReportsService = require('../services/weeklyReportsService'); const weeklyReportsController = async (req, res) => { try { const data = await weeklyReportsService; res.json({data}) console...

Confusion between commands.Bot and discord.Client | Which one should I use?

Whenever you look at YouTube tutorials or code from this website there is a real variation. Some developers use client = discord.Client(intents=intents) while the others use bot = commands.Bot(command_prefix="something", intents=intents) . Now I know slightly about the difference but I get errors from different places from my code when I use either of them and its confusing. Especially since there has a few changes over the years in discord.py it is hard to find the real difference. I tried sticking to discord.Client then I found that there are more features in commands.Bot . Then I found errors when using commands.Bot . An example of this is: When I try to use commands.Bot client = commands.Bot(command_prefix=">",intents=intents) async def load(): for filename in os.listdir("./Cogs"): if filename.endswith(".py"): client.load_extension(f"Cogs.{filename[:-3]}") The above doesnt giveany response from my Cogs ...