Hello all,
Does anybody know any framework/code for IGD indicator, GD indicator in python or julia programming?.Also Is it ok to use a hypervolume indicator when it is biased with respect to reference points?
This may help in IGD calculation
def calculateigd(truepf, pf): """Calculate IGD value for truepf and pf Parameters ---------- truepf: "true" pf value pf: estimated pf value Returns ------- igd: IGD value """ Y = scipy.spatial.distance.cdist(truepf, pf, 'euclidean') mindist = np.min(Y, axis=1) igd = np.mean(mindist) return igd
Here is another implementation
please see the attached file for both of them
def IGD(truePF, PF):
distEuclidean = []
sumMin = 0
for i in truePF:
for x in PF:
d = distance.euclidean(i, x)
distEuclidean.append(d)
distEuclidean.sort(reverse=True)
sumMin += distEuclidean.pop()
distEuclidean.clear()
igdVal = sumMin / len(truePF)
return igdVal
Thank you so much Ahmad Alhindi . This was really helpful
Hello, I am currently working on isolation of Clostridium perfringens type D from the feacal samples of sheep. I am getting pcr positive from clinical sample but I am facing problem in isolation...
09 March 2024 7,428 1 View
Is there any standards in American Petrochemical Institute available similar to pharmacopoeias? for the chemicals used in oilfield industry
15 September 2023 1,955 0 View
I am performing the synthesis of a protein-drug conjugation. After the conjugation, how do I calculate the concentrations of the protein and drug using UV? Kindly provide examples of calculations.
17 August 2023 8,114 0 View
Hi all, I am trying to model a contact problem in DIANA FEA. I went through the DIANA manual and found that DIANA has contact elements which imposes the contact constraint. But there aren't any...
02 August 2023 7,405 3 View
I want to know whether any possible ways to charge the battery using supercapacitors with the help of converters. if yes what type of converters are prefered to charge the battery?
16 July 2023 154 1 View
Dear Experts, Would like to have clarify about the curious topic. While doing autoclave of plastic vials (plastic containers) the vials undergone deformation and the shape of container is...
03 July 2023 1,650 0 View
Dear Experts, I would like to understand the analytical value interpretation of my sample which is subjected for elemental characterization study by EDAX SEM analysis. The reported results...
02 June 2023 9,129 2 View
Dear Folks/Experts, I would like to know what are the factors may cause uneven or more water contents in lyophilized vials (most of the vials meeting acceptance limit few vials shown too higher...
19 January 2023 4,526 1 View
Dear Folks, As you aware, to determine the end point of freeze drying a method is generally following is Pressure Rise Test (PRT) or Pressure Rise Analysis PRA as comparitive method of pressure in...
16 December 2022 8,945 1 View
The normal procedure to make Co2 gas into solid 1)Compression and cooling method. Could please suggest some ideas to make co2 gas into co2 solid? ( cost - effective method)
08 October 2022 6,640 2 View
I'm currently exploring the application of Python in textile engineering, specifically in areas like data analysis, process automation, and the development of smart textiles. I'm interested in...
10 August 2024 7,429 2 View
Request Python code from this article : Gender equity of authorship in pulmonary medicine over the past decade. THANKS!
08 August 2024 6,242 2 View
Program: g_mmpbsa, version 2024.1 Source file: extrn_apbs.cxx (line 152) Fatal error: Failed to execute command: $APBS pybYcUWA.in --output-file=pybYcUW.out
07 August 2024 6,066 0 View
Visual Studio Code (VS Code) has become a popular choice among developers for several reasons: 1. **Free and Open Source**: VS Code is free to use and open source, making it accessible to...
07 August 2024 7,013 4 View
I need the python code to forecast what crop production will be in the next decade considering climate and crop production variables as seen in the attached.csv file.
05 August 2024 2,977 3 View
Hello everyone, I am currently working on a research project that aims to integrate machine learning techniques into an open source SIEM tool to automate the creation of security use cases from...
04 August 2024 3,196 2 View
I am conducting a qualitative study that uses interviews to investigate the perceptions of teachers about a particular leadership practice and I am focusing on 3 schools which have a total number...
01 August 2024 8,457 10 View
Are students in the MBA program in Fisheries Enterprises Management eligible to work in the aquaculture industry abroad? Could you explain the foreign countries interested in recruiting...
28 July 2024 8,378 2 View
How can we calculate the percentage of configuration interaction (CI) in the UV output data of the Gaussian program? for example: Excited State 17: Singlet-A 5.1359 eV 241.41 nm...
28 July 2024 9,165 2 View
I need to install this program
25 July 2024 4,756 0 View