NewStats: 3,263,806 , 8,181,460 topics. Date: Sunday, 08 June 2025 at 01:49 AM 4k1g276z3e3g |
(1) (5) (of 5 pages)
![]() |
This morning I ed VFS to clarify non-acceptance of new applications/appointments for Ireland Embassy Here is the response I received a few minutes ago --------------------------------------------------------------------------------------- Dear Sir/Madam Do you have a booked appointment? If yes kindly be informed that the Ireland Embassy, resumed operations today and those who have booked appointments previously have just been rescheduled. Kindly check your mail or the mail of the person who booked the appointment for you. Warm Regards, ---------- VFS GLOBAL EST. 2001 | Partnering Governments. Providing Solutions. Mobile: +234 8150188800 | [email protected] | www.vfsglobal.com/ireland/nigeria Address: Ireland Visa Application Centre Manor Hall, Plot 110, iral Ayinla Way, Opp Treasure Garden Estate, 3rd Roundabout, Lekki Phase I, Lagos , Nigeria Ireland Visa Application Centre Sterling Bank Plaza, 3rd Floor Plot 1083 Mohammadu Buhari Way, Central Business District, Abuja. Warm Regards, Celestina 1 Like |
![]() |
I understand how frustrating it is to be separated from our families for so long. I'm hoping that these guys reconsider and process our applications as soon as possible. However, I had the pleasure of speaking with one of the here, and we came to the conclusion that we could form a Whatsapp group and have real-time discussions, as well as share important information. In this group, we can talk about and suggest ways to possibly reach out to people in positions of power (Senate, Ministry of Foreign Affairs, etc.), either in writing or over the phone. I believe we can use this to air our grievances while also appealing to those in charge. Guys, wetin una think about this ? 3 Likes |
![]() |
How can we address this issue? Is there a way we can reach the Senate or anyone in power to address this disheartening situation? How can they be this wicked to Nigerians. Honestly, this Irish people do not understand the importance of having one's family around. I really hope this can get to people in power. 2 Likes |
![]() |
Guys, I had to actually go to the Irish Immigration website to confirm the processing time for the following categories of Family Visas: 1. non EEA family member For this category of family visa, it is stated that you can expect that your application will be dealt with within 12 months of receipt of all required documentation. Please see: https://www.irishimmigration.ie/coming-to--family-in-ireland/ing-a-non-eea-non-swiss-national/-non-eea-family-member/ 2. ing an Irish national For this category of family visa, you can expect that you application will be dealt with within 6 months of receipt of all required documentation Please see: https://www.irishimmigration.ie/coming-to--family-in-ireland/ing-an-irish-national/-family-visa/#long |
![]() |
I'm not sure why it takes so long to determine the outcome of a " Family Visa." In India, it takes 20 working days (https://www.dfa.ie/irish-embassy/india/visas/processing-times-decisions-appeals/) and 10-14 working days in the UK (https://www.dfa.ie/irish-embassy/great-britain/our-services/visas/weekly-decision-report). Why is everything in Africa so difficult? I'm about to begin this application, but the delay is discouraging. 1 Like |
![]() |
hi
|
![]() |
![]() |
################# 1(a) ###################### install.packages("reshape2" ![]() library(reshape2) data("tips" ![]() View(tips) str(tips) help(tips) summary(tips) smokers = subset(tips, tips$smoker == "Yes" ![]() summary(smokers) #What is the size of the largest group of diners? max(tips$size) #How many groups of this size dined at the restaurant #highest size = 4 a = which(tips$size == max(tips$size)) a which.max(a) #What was the largest bill amongst these groups summary(a) #form a new column called percentage.tip perc_tip <- (tips$tip*100)/(tips$total_bill) tips <- cbind(tips,perc_tip) View(tips) Average_tip = mean(tips$perc_tip) Average_tip #smallest mean percentage.tip is "Male" and "Fri" aggregate(tips$perc_tip, by=list(tips$sex,tips$day), FUN=mean) #cut function() to order is.ordered(tips$rating) rating <- cut(tips$perc_tip, breaks = c(0,10,20,50), labels = c("Normal","Generous","Very Generous" ![]() rating tips <- cbind(tips,rating) View(tips) #How to remove column tips$small.interval <- NULL #Creayte a Two-way tables twoway = data.frame(tips$time,tips$rating) View(twoway) #How many tables at lunch are considered generous summary(twoway$tips.rating == "Generous" ![]() |
![]() |
############ 1 ############## ################# (a) ################ install.packages("boot" ![]() library("boot" ![]() data("channing" ![]() ? boot ################# (b) ################ str(channing) x <- mean(channing$entry)/12 y <- round(x,1) y #################################### which.min(channing$entry) channing[319,1] ###################################### status <- as.factor(channing$status) status <- gsub("1", "Alive", status) status <- gsub("1", "Alive", status) channing <- cbind(channing, status) colnames(channing) #################################### --remove cens column channing$cens = NULL #rm(channing$cens) ################################### table(channing$status) p <- as.factor(channing$sex) q <- as.factor(channing$status) aggregate(channing[2:4], by=list(p,q), FUN = mean) ncol(channing) channing[,c(2,4)] ############ 2 ############# install.packages("MASS" ![]() library("MASS" ![]() data("Cars93" ![]() ?Cars93 str(Cars93) #boxplot(Cars93$Price ~ Cars93$DriveTrain, main = "Boxplot for Cars93 Datateset", col="blue" ![]() boxplot(Cars93$Price ~ Cars93$DriveTrain, plot=F) ############ ############# f=0 u=0 sd=1 up <- ((x-u)^2)/2*((sd)^2) pi = 2.1342 dn <- sqrt(2*pi*((sd)^2)) f <- exp (-up)/dn f |
![]() |
######################### 1(a) ############################################# install.packages('carData') library(carData) View(Chile) help(Chile) # Chile dataset: The data are from a national survey conducted in April and May # of 1988 by FLACSO/Chile ######################### 1(b) ############################################# str(Chile) #Brief Dscription #---------------- # The Chile data frame has 2700 observations. and 8 variables. The data are from a national survey conducted # in April and May of 1988 by FLACSO/Chile. There are some missing data. # The dataset consist the following variables which are: # population, sex, age, education, income, income, statusquo, vote #References #---------- #Fox, J. (2016) Applied Regression Analysis and Generalized Linear Models, Third Edition. Sage. #Fox, J. and Weisberg, S. (2019) An R Companion to Applied Regression, Third Edition, Sage. # Measurement unit of the income variable # --------------------------------------- # The Income variable is measure in Pesos ######################### 1(C) ############################################# dataChileInc <- na.omit(Chile$income) View(dataChileInc) v <- mean(dataChileInc) v ######################### 1(D) ############################################# TabRS = data.frame(Chile$region,Chile$sex) View(TabRS) summary(TabRS) subFemaleSA = subset(TabRS, Chile$region == "SA" & Chile$sex == "F" ![]() ######################### 1(E) ############################################# Chile2 <- na.omit(Chile) View(Chile2) str(Chile2) #Size = 2431 obs. with 8 variables dim.data.frame(Chile2) ######################### 1(F) ############################################# aggregate(Chile2$age, by=list(Chile2$sex), FUN = (mean)) aggregate(Chile2$age, by=list(Chile2$sex), FUN = (sd)) ######################### 1(G) ############################################# Chile2$education<- factor(Chile2$education, ordered = TRUE, levels = c("P", "S", "PS" ![]() levels(Chile2$education) str(Chile2) is.ordered(Chile2$education) str(Chile2$education) ######################### 1(H) ############################################# tot <- data.frame(Chile2$income,Chile2$age) objIA <- aggregate(tot, by=list(Chile2$sex,Chile2$vote), FUN = (mean)) objIA #sex/vote combination with highest mean income is Sex='M' and Vote ='Y' ######################### 2(B) ####################### install.packages('MASS') library(MASS ) View(Cars93) help(Cars93) str(Cars93) # The dataset contains 27 variables ######################### 2(B) ####################### hist(Cars93$Price, col = 'Pink', ylab = "Number of Cars", xlab= "Price ($)", main = "Prices of Cars at Deontay Wilder Company", label = TRUE ) ######################### 2(B) ####################### plot(Cars93$Length,Cars93$Price, type = "b", main="Scatterplot Example", xlab="Car Price ", ylab="Length", pch=25) library(car) scatterplot(Length ~ Price | DriveTrain, data=Cars93, xlab="Length", ylab="Price", main="Enhanced Scatter Plot" ![]() |
![]() |
hello baba
|
![]() |
Tlovely1: Welcome!!!!!! |
![]() |
Hi guys
|
![]() |
[quote author=Akmarley post=81837782]Same here DBS business analytics but I’m waiting for visa [/quo upte] Expect a positive response. It is done. 1 Like |
![]() |
olutemi: Congrats!!!! I am also heading to DBS (Data Analytics) next week. Hope we can relate as induction/registration starts on 17th 1 Like |
![]() |
DBS VISA ISSUED!!!!!!! Submitted on June 17th @VSF Lagos Got to Abuja 18th June Stamped Aug 3rd 2019 Received today at exactly 4.32pm. God is great!!!!!!! 10 Likes |
![]() |
Mrtanji: Are you a pesimmist ? Why the negative thought ? Please, be positive always. |
![]() |
skimmy005: ARE U SURE ? |
![]() |
The reaction to this issue of rape is not supposed to be based on tribalism and religion. You guys keep looking for which tribe to push the blame to. This is the problem with Nigerians, every little thing, we go tribalistic and bring religion on board. The fact is that religion has done more harm than good. 1 Like |
![]() |
Pls, this is to inform u that the so-called 1TB data will be reduced to 3.5gb by Wednesday as an upgrade is due to take place.
|
![]() |
A plot of land with completed building on it for sale at Ikorodu. Interested persons should me on 0803 422 3658.
|
![]() |
hugman: I have done what u said but it is still same, just rebooting and rebooting. I left it for 48hrs before switching it on again. Just displaying "Load" and later reboots |
![]() |
hugman: I bought it as a new product and just a week later, started rebooting itself. I removed the 3g modem attached and restarted it again, still same result. I have not done any software upgrade on it. Pls help. Thanks for ur assistance |
![]() |
Hello house, pls I need ur help. I newly bought the Q28g receiver just 7days ago and now it is rebooting repeatedly and LED light is simply displaying "Load". Pls how can I salvage the receiver's situation? |
![]() |
Hello house, pls I need ur help. I newly bought the Q28g receiver just 7days ago and now it is rebooting repeatedly and LED light is simply displaying "Load". Pls how can I salvage the receiver's situation? |
![]() |
tunnath: I have one Qsat for sale, still has 200+ days validity. N9k if u r interested, 08034223658 Thanks |
![]() |
The way u guys discuss this queen stuff is not too good. A guy even posted his full Qsat avartarcam code. Everyone should know that watching paytv without a valid subscription is illegal. Therefore, everyone should avoid mentioning channel names here n there. Pls, be aware dat the thieves agents are here to collect vital info which can be used to their own advantage. A word is enough for the wise....... |
![]() |
Please, take this dude to the African Major Prophet at Ressurrection Praise Ministries in satellite town, Alakija, Lagos. You will be amazed at what the LORD can do through his servant. A similar case what handled and to God be the glory. Please, try God's power. |
(1) (5) (of 5 pages)
(Go Up)
Sections: How To . 42 Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or s on Nairaland. |