if you are talking about this error > fitur::fit_dist_addin() Error in ls(envir = .GlobalEnv)[sapply(ls(envir = .GlobalEnv), function(xChar) { : invalid subscript type 'list' please note that this function looks for "eligible" objects in the environment. So if the environment don't have pre-specified lists it will give you this error. Hope this helps
Why did I get this error? > library(fitur) Error: package or namespace load failed for ‘fitur’ in library.dynam(lib, package, package.lib): DLL ‘httpuv’ not found: maybe not installed for this architecture? In addition: Warning message: package ‘fitur’ was built under R version 4.1.3 > library(actuar) > fitur::fit_dist_addin() Error in library.dynam(lib, package, package.lib) : DLL ‘httpuv’ not found: maybe not installed for this architecture?
Thank you for the video, it was very helpful. I have a basic question though. Imagine I have a dataset and I decide to fit a specific distribution, lets say Weibull, to it. Then, I want to find the extreme values in my data i.e. p-value of
I really love your videos, very clear and helpful for beginners like me. Just a quick question, when you want to know what distribution your data follows, what do you recommend? Like in my case I have population growth data, some populations look exponential, others looks like a logistic but I am not sure how I would determine my data distribution, thanks!
Hello, I'm a final year student and my thesis is about composite distribution. Did you know how to use "Compdist" package? Because the documentation is so simple, I'm confused when have to input the parameter. I hope you can help me. Thank you
This is quantal mapping with Weibull distribution Could you please help us with how to solve this problem? C and K values are shape and scale values V_corr = C_obs [-ln(1-(1- e^(-(V_sim/C_his )^(k_his ) ) )) ]^(1/K_obs ) Constant values --> C_obs=4.946, K_obs=3.311, C_his= 5.021, K_his= 3.307 Variable value --> v_sim -> sfcWind The variable value is in NC file (.nc) I want to calculate by R this equation (Actually this equation I am using to correct my data). Thank you and looking forward to hearing positive from you soon.
Amazing script. This is one of the best statistical scripts in R available online I have ever seen. Is it possible to implement this in a Rcmdr plugin?
Hi, I'm trying to install the 'actuar' package but it doesn't exist. Then, when I'm trying to use fitur::fit_dist_addin(), R comes back to me with an error: "Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): there is no package called ‘actuar’"; "Warning in install.packages: dependency ‘actuar’ is not available". How do you address this issue? PS: my R version is 4.0.3.
Thanks a lot for your feedback. unfortunately, few days ago this error appeared for users who dont have actuar already installed on their systems. I suggest to download it from CRAN and install it manually, you then might need to install dependencies manually as well.
Very good and informative video. I would be grateful if you could explain how to fit distribution on grouped data. For example if we have tree diameter classes (D in cm) and the correpsonding frequencies (N), how can we fit a distribution in R? THANK YOU !!! D N 2 66 4 140 6 115 8 41 10 6 12 6 14 3
Hello Mr.Kamal,
Everything works fine,
except the last part when I try to downloaded fitur and actual
Very Thankful,
Alberto
if you are talking about this error
> fitur::fit_dist_addin()
Error in ls(envir = .GlobalEnv)[sapply(ls(envir = .GlobalEnv), function(xChar) { :
invalid subscript type 'list'
please note that this function looks for "eligible" objects in the environment. So if the environment don't have pre-specified lists it will give you this error. Hope this helps
Thank you for the video, it was very helpful 🙏
internet is magic. Thank you for your helpful video.
Why did I get this error?
> library(fitur)
Error: package or namespace load failed for ‘fitur’ in library.dynam(lib, package, package.lib):
DLL ‘httpuv’ not found: maybe not installed for this architecture?
In addition: Warning message:
package ‘fitur’ was built under R version 4.1.3
> library(actuar)
> fitur::fit_dist_addin()
Error in library.dynam(lib, package, package.lib) :
DLL ‘httpuv’ not found: maybe not installed for this architecture?
This video is so good!! you made everything sound so easy!! Thank you!
You're so welcome! Thanks a lot for your kind words.
Thank you for the video, it was very helpful.
I have a basic question though. Imagine I have a dataset and I decide to fit a specific distribution, lets say Weibull, to it. Then, I want to find the extreme values in my data i.e. p-value of
Why dont you plot a boxplot for your data and check outliers. you can also use hist() or summary(). Sorry for my late reply
dude feels like he's recording this in a church or in a blacksmith shop or in a middle of a medieval fight with all that background noise
crying at this commenty
Hello, could you please explain to me how to use another distribution not built in the function, or from another library, i.e. demg from emg library.
I really love your videos, very clear and helpful for beginners like me. Just a quick question, when you want to know what distribution your data follows, what do you recommend? Like in my case I have population growth data, some populations look exponential, others looks like a logistic but I am not sure how I would determine my data distribution, thanks!
Thanks a lot for your feedback. please check this playlist th-cam.com/video/bPOmcypgxY8/w-d-xo.html
also try this
x = rexp(1000, rate = 3)
fitdist(x, "exp")
Hello, I'm a final year student and my thesis is about composite distribution. Did you know how to use "Compdist" package? Because the documentation is so simple, I'm confused when have to input the parameter.
I hope you can help me. Thank you
is there a package where i can also use the pearson III distribution and the Gumbel distribution? all in one dashboard like it is in "fitur"
thanks for your comment. I don't know really. Please let me know if you find a way to it.
Thank you very much
This is quantal mapping with Weibull distribution
Could you please help us with how to solve this problem?
C and K values are shape and scale values
V_corr = C_obs [-ln(1-(1- e^(-(V_sim/C_his )^(k_his ) ) )) ]^(1/K_obs )
Constant values --> C_obs=4.946, K_obs=3.311, C_his= 5.021, K_his= 3.307
Variable value --> v_sim -> sfcWind
The variable value is in NC file (.nc)
I want to calculate by R this equation (Actually this equation I am using to correct my data).
Thank you and looking forward to hearing positive from you soon.
Amazing script. This is one of the best statistical scripts in R available online I have ever seen. Is it possible to implement this in a Rcmdr plugin?
Thanks a lot for your comment. I haven't tried it in Rcmdr. Please try it and let me know
Thanks for the great tutorial😊!
Glad it was helpful!
Hi,
I'm trying to install the 'actuar' package but it doesn't exist. Then, when I'm trying to use fitur::fit_dist_addin(), R comes back to me with an error: "Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
there is no package called ‘actuar’"; "Warning in install.packages:
dependency ‘actuar’ is not available". How do you address this issue? PS: my R version is 4.0.3.
Thanks a lot for your feedback. unfortunately, few days ago this error appeared for users who dont have actuar already installed on their systems. I suggest to download it from CRAN and install it manually, you then might need to install dependencies manually as well.
@@StatPharm Fixed it thank you! I had to download the latest R software :)
@@Gassasse Hello, I am dealing with the same problem, i want to ask if you dont mind, should I update the version of R for using this actuar package?
@@dwim7407 yep, just install the latest R version and you should be good to go!
@@Gassasse yeah thank you it’s really helpful!! I’ve tried and it works just well 😊,but I need to install rtools too
Thank you
You're welcome. Thank You for your valuable comment
Is it possible to get p value for distribution fit?
would you please clarify with an example?
Very good and informative video. I would be grateful if you could explain how to fit distribution on grouped data. For example if we have tree diameter classes (D in cm) and the correpsonding frequencies (N), how can we fit a distribution in R? THANK YOU !!!
D N
2 66
4 140
6 115
8 41
10 6
12 6
14 3
someone sword fighting in the background
Nice. Thanks!
Our pleasure!
Could you upload your script. I didn't find it in the download option.
please check the link in video description under the "R script used". I just tried it and the code is downloadable from a box.com link
من وين ؟؟؟