28,459 questions
0
votes
0
answers
10
views
Bad Request while trying to add owner to a Group
I'm trying to add an owner to list of groups using the following script:
# Install-Module Microsoft.Graph -Scope AllUsers
# Import-Module Microsoft.Graph
# Connect to Microsoft Graph
Connect-MgGraph ...
0
votes
0
answers
7
views
graph api copy notebook doesn't create notebook folder
when using the method, all copied notebooks appear in the destination documents folder. The documentation on github explicitly tells something different. Bug or feature?
0
votes
1
answer
44
views
Excel XY scatter chart glitch
Sometimes Excel refuses point blank to create XY scatter plots properly. Defaulting to a silly format plotting rows as lines with legends "series 1", "series 2" & "series ...
0
votes
0
answers
27
views
Node2vec embeddings for Fraud Detection?
I tried to improve XGBoost by stacking node2vec embeddings to the original features for fraud detection. In literature and papers this is frequently discussed as a good method to enhance prediction ...
0
votes
1
answer
87
views
New-MgServicePrincipalAppRoleAssignment : Resource '1***1' does not exist or one of its queried reference-property objects are not present
I have an azure function and i enable its managed identity , and i got a principle id "1***1":-
Now i tried to run this command based on this official documentation from Microsoft https://...
0
votes
0
answers
51
views
Doesn't imputing missing values affect the data quality? [closed]
I'm doing multiple linear regression for a dataset.
The numeric_df dataframe is the continuous variables in the orignal dataframe.
I want to check linearity between the price variable (target) and the ...
1
vote
2
answers
168
views
How to build a nested adjacency list from an adjacency list and a hierarchy? [closed]
I have a simple adjacency list representation of a graph like this
{
1: [2, 3, 4],
2: [5],
3: [6, 9],
4: [3],
5: [3],
6: [7, 8],
7: [],
8: [],
9: []
}
which looks ...
1
vote
0
answers
55
views
How to make Plotly figure legend be right to left instead of left to right
I have this plot with horizontal legend. I want the legend title to be on the right instead of the left, and I want the bullets of each legend item to be on the right of the name instead of on the ...
0
votes
0
answers
47
views
Python Bar Chart Bug
I am new to python and with the help of Chatgpt I have created the code below.
import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
# Load your data
df_diff = pd.read_csv("...
0
votes
0
answers
24
views
Microsoft Graph error - how to extract http-status from API
ref. the query same subject of 17 June 2020 and relevant answer.
ServiceException apparently is changed and now 'StatusCode' should be replaced by 'ResponseStatusCode'
I tried to catch it in the ...
0
votes
0
answers
40
views
Unable to access neo4j db when URL is made https
I recently faced an issue with Neo4j Graph. So the issue is, previously I installed Neo4j in a GCP VM, and I used to access it using this URL http://coolname.name.in:7474/browser.
For security ...
0
votes
0
answers
124
views
Plotting real-time graphs using Matplotlib does not allow plotting second graph
I am reading data from serial port and based on that, plotting graphs using matplotlib.
The data from serial port is in format:
ecg 9.89 4.5 123 . . end psd 2.1, 33.2 3.4, 92.10 . . end fft 2.1, 33.2 ...
0
votes
1
answer
55
views
TypeError: add_node() missing 1 required positional argument: 'self'
I'm trying to code a map that shows a graph of nodes and paths. I should be able to add a new node by clicking a button ('Add node') and then the graph, but the only message that pops up is this:
...
3
votes
1
answer
79
views
Optimizing K_ij-free Subgraph Detection in a Bounded-Degree Graph
I am working with an undirected graph G where the maximum degree is bounded by a constant d. My goal is to check whether G contains a complete bipartite subgraph K_{i,j} as a subgraph, for small ...
1
vote
1
answer
61
views
Build aggregated network graph from Pandas dataframe containing a column with list of nodes for each row?
I'm dipping my toes into network visualizations in Python. I have a dataframe like the following:
| user | nodes |
| -----| ---------|
| A | [0, 1, 3]|
| B | [1, 2, 4]|
| C | [0, 3] |
|.....