Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/no ref/image ex #20

Merged
merged 3 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docs/images/activities_by_month_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/changes_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/delay_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/earned_baseline_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/percent_complete_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion smartpm/endpoints/activity.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pandas as pd

from smartpm.client import SmartPMClient
from smartpm.utils import plot_activity_distribution_by_month
from smartpm.visuals import plot_activity_distribution_by_month
from smartpm.decorators import api_wrapper, utility
from smartpm.logging_config import logger
from smartpm.endpoints.scenarios import Scenarios
Expand Down
2 changes: 1 addition & 1 deletion smartpm/endpoints/changes.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from smartpm.client import SmartPMClient
from smartpm.decorators import api_wrapper, utility
from smartpm.utils import plot_schedule_changes
from smartpm.visuals import plot_schedule_changes
from smartpm.logging_config import logger

class Changes:
Expand Down
2 changes: 1 addition & 1 deletion smartpm/endpoints/delay.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from smartpm.client import SmartPMClient
from smartpm.decorators import api_wrapper, utility
from smartpm.utils import plot_schedule_delay
from smartpm.visuals import plot_schedule_delay
from smartpm.logging_config import logger

class Delay:
Expand Down
2 changes: 1 addition & 1 deletion smartpm/endpoints/scenarios.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from smartpm.client import SmartPMClient
from smartpm.utils import plot_percent_complete_curve, plot_earned_schedule_curve
from smartpm.visuals import plot_percent_complete_curve, plot_earned_schedule_curve
from smartpm.decorators import api_wrapper, utility
from smartpm.logging_config import logger

Expand Down
File renamed without changes.
Loading